aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/xilinx/cells_box.v
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-04-22 12:14:37 -0700
committerEddie Hung <eddie@fpgeh.com>2019-04-22 12:14:37 -0700
commit79fb291dbedbb6cf582925329e8140cbc7e502a9 (patch)
tree7cccf0d21f1ac4246f6a4038e8e806b22b931411 /techlibs/xilinx/cells_box.v
parent4cfef7897f4bac285853bf0f08ae366523ae76b4 (diff)
downloadyosys-79fb291dbedbb6cf582925329e8140cbc7e502a9.tar.gz
yosys-79fb291dbedbb6cf582925329e8140cbc7e502a9.tar.bz2
yosys-79fb291dbedbb6cf582925329e8140cbc7e502a9.zip
Cleanup, call pmux2shiftx even without -nosrl
Diffstat (limited to 'techlibs/xilinx/cells_box.v')
-rw-r--r--techlibs/xilinx/cells_box.v19
1 files changed, 0 insertions, 19 deletions
diff --git a/techlibs/xilinx/cells_box.v b/techlibs/xilinx/cells_box.v
deleted file mode 100644
index ef6f81d27..000000000
--- a/techlibs/xilinx/cells_box.v
+++ /dev/null
@@ -1,19 +0,0 @@
-(* abc_box_id = 1 *)
-module MUXF7(output O, input I0, I1, S);
- assign O = S ? I1 : I0;
-endmodule
-
-(* abc_box_id = 2 *)
-module MUXF8(output O, input I0, I1, S);
- assign O = S ? I1 : I0;
-endmodule
-
-(* abc_box_id = 3 *)
-module MUXCY(output O, input CI, DI, S);
- assign O = S ? CI : DI;
-endmodule
-
-(* abc_box_id = 4 *)
-module XORCY(output O, input CI, LI);
- assign O = CI ^ LI;
-endmodule