Add techlibs/xilinx/lut2lut.v
authorClifford Wolf <clifford@clifford.at>
Mon, 10 Jul 2017 10:09:05 +0000 (12:09 +0200)
committerClifford Wolf <clifford@clifford.at>
Mon, 10 Jul 2017 10:09:05 +0000 (12:09 +0200)
techlibs/xilinx/Makefile.inc
techlibs/xilinx/lut2lut.v [new file with mode: 0644]

index 5f09ffb02b3fd4fb793a2c1e53d11b4af250c84a..d4d4bd09af7e9bab4941bcebb58e792e54340607 100644 (file)
@@ -29,6 +29,7 @@ $(eval $(call add_share_file,share/xilinx,techlibs/xilinx/drams.txt))
 $(eval $(call add_share_file,share/xilinx,techlibs/xilinx/drams_map.v))
 $(eval $(call add_share_file,share/xilinx,techlibs/xilinx/drams_bb.v))
 $(eval $(call add_share_file,share/xilinx,techlibs/xilinx/arith_map.v))
+$(eval $(call add_share_file,share/xilinx,techlibs/xilinx/lut2lut.v))
 
 $(eval $(call add_gen_share_file,share/xilinx,techlibs/xilinx/brams_init_36.vh))
 $(eval $(call add_gen_share_file,share/xilinx,techlibs/xilinx/brams_init_32.vh))
diff --git a/techlibs/xilinx/lut2lut.v b/techlibs/xilinx/lut2lut.v
new file mode 100644 (file)
index 0000000..061ad20
--- /dev/null
@@ -0,0 +1,65 @@
+module LUT1(output O, input I0);
+  parameter [1:0] INIT = 0;
+  \$lut #(
+    .WIDTH(1),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A(I0),
+    .Y(O)
+  );
+endmodule
+
+module LUT2(output O, input I0, I1);
+  parameter [3:0] INIT = 0;
+  \$lut #(
+    .WIDTH(2),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A({I1, I0}),
+    .Y(O)
+  );
+endmodule
+
+module LUT3(output O, input I0, I1, I2);
+  parameter [7:0] INIT = 0;
+  \$lut #(
+    .WIDTH(3),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A({I2, I1, I0}),
+    .Y(O)
+  );
+endmodule
+
+module LUT4(output O, input I0, I1, I2, I3);
+  parameter [15:0] INIT = 0;
+  \$lut #(
+    .WIDTH(4),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A({I3, I2, I1, I0}),
+    .Y(O)
+  );
+endmodule
+
+module LUT5(output O, input I0, I1, I2, I3, I4);
+  parameter [31:0] INIT = 0;
+  \$lut #(
+    .WIDTH(5),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A({I4, I3, I2, I1, I0}),
+    .Y(O)
+  );
+endmodule
+
+module LUT6(output O, input I0, I1, I2, I3, I4, I5);
+  parameter [63:0] INIT = 0;
+  \$lut #(
+    .WIDTH(6),
+    .LUT(INIT)
+  ) _TECHMAP_REPLACE_ (
+    .A({I5, I4, I3, I2, I1, I0}),
+    .Y(O)
+  );
+endmodule