diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-04-13 09:38:07 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-05-14 10:33:56 -0700 |
commit | 95763c8d18eec49de3acff5d38a82f54cc25cb1b (patch) | |
tree | 29350a6c58a7654873e31ac93c6248219a66dfc7 /techlibs/xilinx/abc9_unmap.v | |
parent | accfc70fc2bcfaa5f9f58e8a113a32e506f5081d (diff) | |
download | yosys-95763c8d18eec49de3acff5d38a82f54cc25cb1b.tar.gz yosys-95763c8d18eec49de3acff5d38a82f54cc25cb1b.tar.bz2 yosys-95763c8d18eec49de3acff5d38a82f54cc25cb1b.zip |
abc9_ops: add 'dff' label for auto handling of (* abc9_flop *) boxes
Diffstat (limited to 'techlibs/xilinx/abc9_unmap.v')
-rw-r--r-- | techlibs/xilinx/abc9_unmap.v | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/techlibs/xilinx/abc9_unmap.v b/techlibs/xilinx/abc9_unmap.v index 5604ceb0a..49a7bd88c 100644 --- a/techlibs/xilinx/abc9_unmap.v +++ b/techlibs/xilinx/abc9_unmap.v @@ -25,10 +25,6 @@ module $__ABC9_ASYNC01(input A, S, output Y); assign Y = A; endmodule -module $__ABC9_FF_(input D, output Q); - assign Q = D; -endmodule - module $__ABC9_RAM6(input A, input [5:0] S, output Y); assign Y = A; endmodule |