aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ecp5/abc9_unmap.v
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-06 16:50:07 -0800
committerGitHub <noreply@github.com>2020-01-06 16:50:07 -0800
commitce765aa4def09bd8b0161425ee40ee55f62e33ff (patch)
tree2a91632d31dab23188d6cb1b4bef16b47518cbe4 /techlibs/ecp5/abc9_unmap.v
parent66698cb6fd0e33a27197b7412e094dc77363b5e5 (diff)
parent98ee8c14df763973d47c8c952d462eb9407f6787 (diff)
downloadyosys-ce765aa4def09bd8b0161425ee40ee55f62e33ff.tar.gz
yosys-ce765aa4def09bd8b0161425ee40ee55f62e33ff.tar.bz2
yosys-ce765aa4def09bd8b0161425ee40ee55f62e33ff.zip
Merge pull request #1181 from YosysHQ/xaig_dff
"abc9 -dff" option for sequential synthesis
Diffstat (limited to 'techlibs/ecp5/abc9_unmap.v')
-rw-r--r--techlibs/ecp5/abc9_unmap.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/ecp5/abc9_unmap.v b/techlibs/ecp5/abc9_unmap.v
index 9ae143c46..cbdffdaf1 100644
--- a/techlibs/ecp5/abc9_unmap.v
+++ b/techlibs/ecp5/abc9_unmap.v
@@ -1,5 +1,5 @@
// ---------------------------------------
-module \$__ABC9_DPR16X4_COMB (input [3:0] A, S, output [3:0] Y);
- assign Y = A;
+module \$__ABC9_DPR16X4_COMB (input [3:0] $DO, RAD, output [3:0] DO);
+ assign DO = $DO;
endmodule