mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
This commit tries to carefully follow the documented behavior of LSE and Synplify. It will use `syn_ramstyle` attribute if there are any write ports, and `syn_romstyle` attribute otherwise. * LSE supports both `syn_ramstyle` and `syn_romstyle`. * Synplify only supports `syn_ramstyle`, with same values as LSE. * Synplify also supports `syn_rw_conflict_logic`, which is not documented as supported for LSE. Limitations of the Yosys implementation: * LSE/Synplify support `syn_ramstyle="block_ram,no_rw_check"` syntax to turn off insertion of transparency logic. There is currently no way to support multiple valued attributes in memory_bram. It is also not clear if that is a good idea, since it can cause sim/synth mismatches. * LSE/Synplify/1364.1 support block ROM inference from full case statements. Yosys does not currently perform this transformation. * LSE/Synplify propagate `syn_ramstyle`/`syn_romstyle` attributes from the module to the inner memories. There is currently no way to do this in Yosys (attrmvcp only works on cells and wires).
27 lines
552 B
Plaintext
27 lines
552 B
Plaintext
bram $__TRELLIS_DPR16X4
|
|
init 1
|
|
abits 4
|
|
dbits 4
|
|
groups 2
|
|
ports 1 1
|
|
wrmode 0 1
|
|
enable 0 1
|
|
transp 0 0
|
|
clocks 0 1
|
|
clkpol 0 2
|
|
endbram
|
|
|
|
# The syn_* attributes are described in:
|
|
# https://www.latticesemi.com/-/media/LatticeSemi/Documents/Tutorials/AK/LatticeDiamondTutorial311.ashx
|
|
attr_icase 1
|
|
|
|
match $__TRELLIS_DPR16X4
|
|
attribute !syn_ramstyle syn_ramstyle=auto syn_ramstyle=distributed
|
|
attribute !syn_romstyle syn_romstyle=auto
|
|
attribute !ram_block
|
|
attribute !rom_block
|
|
attribute !logic_block
|
|
make_outreg
|
|
min wports 1
|
|
endmatch
|