aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gowin/drams_map.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-22 09:09:27 +0200
committerClifford Wolf <clifford@clifford.at>2019-04-22 09:09:27 +0200
commit913659d644c9a74497a387a86326aeafc0a99216 (patch)
tree87c8cc930157c0931b2e80b5b9423c720dec8a97 /techlibs/gowin/drams_map.v
parentcf1ba46fa029468869fb3af468d18ad72c8a9c4a (diff)
parentf9272fc56d7179f04a9f776bf056eedfc33dd358 (diff)
downloadyosys-913659d644c9a74497a387a86326aeafc0a99216.tar.gz
yosys-913659d644c9a74497a387a86326aeafc0a99216.tar.bz2
yosys-913659d644c9a74497a387a86326aeafc0a99216.zip
Merge branch 'master' of https://github.com/dh73/yosys_gowin into dh73-master
Diffstat (limited to 'techlibs/gowin/drams_map.v')
-rw-r--r--techlibs/gowin/drams_map.v31
1 files changed, 31 insertions, 0 deletions
diff --git a/techlibs/gowin/drams_map.v b/techlibs/gowin/drams_map.v
new file mode 100644
index 000000000..a50ab365a
--- /dev/null
+++ b/techlibs/gowin/drams_map.v
@@ -0,0 +1,31 @@
+module \$__GW1NR_RAM16S4 (CLK1, A1ADDR, A1DATA, A1EN, B1ADDR, B1DATA, B1EN);
+ parameter CFG_ABITS = 4;
+ parameter CFG_DBITS = 4;
+
+ parameter [63:0] INIT = 64'bx;
+ input CLK1;
+
+ input [CFG_ABITS-1:0] A1ADDR;
+ output [CFG_DBITS-1:0] A1DATA;
+ input A1EN;
+
+ input [CFG_ABITS-1:0] B1ADDR;
+ input [CFG_DBITS-1:0] B1DATA;
+ input B1EN;
+
+ `include "brams_init3.vh"
+
+ RAM16S4
+ #(.INIT_0(INIT_0),
+ .INIT_1(INIT_1),
+ .INIT_2(INIT_2),
+ .INIT_3(INIT_3))
+ _TECHMAP_REPLACE_
+ (.AD(B1ADDR),
+ .DI(B1DATA),
+ .DO(A1DATA),
+ .CLK(CLK1),
+ .WRE(B1EN));
+
+
+endmodule