hdl.mem: document ReadPort and WritePort.
[nmigen.git] / nmigen / hdl / mem.py
2020-09-17 Jean-François Nguyenhdl.mem: document ReadPort and WritePort.
2020-07-30 Adam Greighdl.mem: cast reset value for transparent read ports...
2020-04-05 whitequarkhdl.mem: fix source location of ReadPort.en.
2020-02-06 whitequarkhdl.mem: add synthesis attribute support.
2020-02-06 whitequarkhdl.mem: document Memory.
2019-12-15 whitequarkhdl.mem: fix src_loc_at in ReadPort, WritePort.
2019-10-26 whitequarktest: use `#nmigen:` magic comment instead of monkey...
2019-10-11 whitequarkhdl.ast: deprecate Signal.{range,enum}.
2019-10-11 whitequarkConsistently use {!r}, not '{!r}' in diagnostics.
2019-09-28 whitequarkhdl.mem: remove WritePort(priority=) argument.
2019-09-23 whitequarkhdl.mem,lib.fifo: use keyword-only arguments for memory...
2019-09-23 whitequarkhdl.mem: simplify. NFC.
2019-09-20 whitequarkhdl.mem: use 1 as reset value for ReadPort.en.
2019-09-20 whitequarkhdl.ast: rename `nbits` to `width`.
2019-09-12 whitequarkhdl.mem: use keyword-only arguments as appropriate.
2019-09-08 whitequarkhdl.mem,lib,examples: use Signal.range().
2019-07-08 whitequarkhdl.{dsl,mem,xfrm}: inject appropriate source locations.
2019-07-02 whitequarkhdl.mem: fix naming of registers inside unnamed memories.
2019-07-01 whitequarkhdl.mem: use read_port(domain="comb") for asynchronous...
2019-06-11 whitequarkhdl.mem: coerce memory init values to integers.
2019-04-21 whitequarkhdl.ir: detect elaboratables that are created but not...
2019-03-03 whitequarktracer: factor out get_var_name(default=).
2019-01-26 whitequarkhdl.ir: rename .get_fragment() to .elaborate().
2019-01-01 whitequarkhdl.mem: add DummyPort, for testing and verification.
2018-12-28 whitequarktracer: factor out get_src_loc().
2018-12-27 whitequarkhdl.mem: add missing __all__.
2018-12-24 whitequarkhdl.mem: allow omitting memory simulation logic.
2018-12-22 whitequarkhdl.mem: allow changing init value after creating memory.
2018-12-21 whitequarkhdl.mem: use more informative signal naming for ports.
2018-12-21 whitequarkhdl.mem: ensure transparent read port model has correct...
2018-12-21 whitequarkhdl.mem: use different naming for array signals.
2018-12-21 whitequarkhdl.mem: add simulation model for memory.
2018-12-21 whitequarkhdl.mem: add tests for all error conditions.
2018-12-21 whitequarkhdl.mem: tie rdport.en high for asynchronous or transpa...
2018-12-21 whitequarkhdl.mem: implement memories.