aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/quicklogic/abc9_unmap.v
diff options
context:
space:
mode:
authorLofty <dan.ravensloft@gmail.com>2021-04-12 10:33:40 +0100
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-04-17 20:54:58 +0200
commitdce037a62c5bda9a8256d271d39b06be366120e8 (patch)
tree67d022cbceb487f5359215d7c9ca51959100f549 /techlibs/quicklogic/abc9_unmap.v
parenta58571d0fe8971cb7d3a619a31b2c21be6d75bac (diff)
downloadyosys-dce037a62c5bda9a8256d271d39b06be366120e8.tar.gz
yosys-dce037a62c5bda9a8256d271d39b06be366120e8.tar.bz2
yosys-dce037a62c5bda9a8256d271d39b06be366120e8.zip
quicklogic: ABC9 synthesis
Diffstat (limited to 'techlibs/quicklogic/abc9_unmap.v')
-rw-r--r--techlibs/quicklogic/abc9_unmap.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/techlibs/quicklogic/abc9_unmap.v b/techlibs/quicklogic/abc9_unmap.v
new file mode 100644
index 000000000..1681e01bb
--- /dev/null
+++ b/techlibs/quicklogic/abc9_unmap.v
@@ -0,0 +1,14 @@
+module $__PP3_DFFEPC_SYNCONLY (
+ output Q,
+ input D,
+ input CLK,
+ input EN,
+);
+
+// For some reason ABC9 adds init attributes to wires even though they were removed before mapping.
+// As a workaround, remove any init attributes that get reintroduced.
+wire _TECHMAP_REMOVEINIT_Q_ = 1;
+
+dffepc _TECHMAP_REPLACE_ (.Q(Q), .D(D), .CLK(CLK), .EN(EN), .PRE(1'b0), .CLR(1'b0));
+
+endmodule