summaryrefslogtreecommitdiff
path: root/techlibs/common/techmap.v
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/common/techmap.v')
-rw-r--r--techlibs/common/techmap.v10
1 files changed, 2 insertions, 8 deletions
diff --git a/techlibs/common/techmap.v b/techlibs/common/techmap.v
index e0ecf0c4..f67e3658 100644
--- a/techlibs/common/techmap.v
+++ b/techlibs/common/techmap.v
@@ -451,15 +451,9 @@ endmodule
// --------------------------------------------------------
`ifndef NOLUT
+(* techmap_simplemap *)
(* techmap_celltype = "$lut" *)
-module _90_lut (A, Y);
- parameter WIDTH = 1;
- parameter LUT = 0;
-
- input [WIDTH-1:0] A;
- output Y;
-
- assign Y = LUT[A];
+module _90_lut;
endmodule
`endif