diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:57:35 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:57:35 -0800 |
commit | c28bea0382c07ea63709c33be4318d5012b9d281 (patch) | |
tree | e1d88f4b3cbf6df4df7d4035bd1b65290ae3d6cc /techlibs/xilinx/abc9_model.v | |
parent | 5f970863023881caaa3a64120a0f767386d35d62 (diff) | |
parent | 6e866030c286d70f6ccff805e58b1fdd9a1a322b (diff) | |
download | yosys-c28bea0382c07ea63709c33be4318d5012b9d281.tar.gz yosys-c28bea0382c07ea63709c33be4318d5012b9d281.tar.bz2 yosys-c28bea0382c07ea63709c33be4318d5012b9d281.zip |
Merge remote-tracking branch 'origin/xaig_dff' into eddie/abc9_refactor
Diffstat (limited to 'techlibs/xilinx/abc9_model.v')
-rw-r--r-- | techlibs/xilinx/abc9_model.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/xilinx/abc9_model.v b/techlibs/xilinx/abc9_model.v index c793396a4..11250123d 100644 --- a/techlibs/xilinx/abc9_model.v +++ b/techlibs/xilinx/abc9_model.v @@ -34,13 +34,13 @@ module \$__ABC9_FF_ (input D, output Q); endmodule // Box to emulate async behaviour of FDC* -(* abc_box_id = 1000 *) +(* abc9_box_id = 1000, lib_whitebox *) module \$__ABC9_ASYNC0 (input A, S, output Y); assign Y = S ? 1'b0 : A; endmodule // Box to emulate async behaviour of FDP* -(* abc_box_id = 1001 *) +(* abc9_box_id = 1001, lib_whitebox *) module \$__ABC9_ASYNC1 (input A, S, output Y); assign Y = S ? 1'b0 : A; endmodule |