mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-22 16:45:32 +00:00
This commit:
* renames all remaining instances of "DRAM" (which is ambiguous)
to "LUTRAM" (which is not), finishing the work started in
the commit 698ab9be
;
* renames memory rule files to brams.txt/lutrams.txt;
* adds/renames script labels map_bram/map_lutram;
* extracts where necessary script labels map_ffram and map_gates;
* adds where necessary options -nobram/-nolutram.
The end result is that BRAM/LUTRAM/FFRAM aspects of every target
are now consistent with each other.
Per architecture:
* anlogic: rename drams.txt→lutrams.txt, add -nolutram, add
:map_lutram, :map_ffram, :map_gates
* ecp5: rename bram.txt→brams.txt, lutram.txt→lutrams.txt
* efinix: rename bram.txt→brams.txt, add -nobram, add :map_ffram,
:map_gates
* gowin: rename bram.txt→brams.txt, dram.txt→lutrams.txt,
rename -nodram→-nolutram (-nodram still recognized), rename
:bram→:map_bram, :dram→:map_lutram, add :map_ffram, :map_gates
22 lines
404 B
Verilog
22 lines
404 B
Verilog
module \$__ANLOGIC_DRAM16X4 (CLK1, A1ADDR, A1DATA, B1ADDR, B1DATA, B1EN);
|
|
parameter [63:0]INIT = 64'bx;
|
|
input CLK1;
|
|
|
|
input [3:0] A1ADDR;
|
|
output [3:0] A1DATA;
|
|
|
|
input [3:0] B1ADDR;
|
|
input [3:0] B1DATA;
|
|
input B1EN;
|
|
|
|
EG_LOGIC_DRAM16X4 #(
|
|
`include "lutram_init_16x4.vh"
|
|
) _TECHMAP_REPLACE_ (
|
|
.di(B1DATA),
|
|
.waddr(B1ADDR),
|
|
.wclk(CLK1),
|
|
.we(B1EN),
|
|
.raddr(A1ADDR),
|
|
.do(A1DATA)
|
|
);
|
|
endmodule
|