diff options
Diffstat (limited to 'techlibs/common/techmap.v')
-rw-r--r-- | techlibs/common/techmap.v | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/techlibs/common/techmap.v b/techlibs/common/techmap.v index e0ecf0c48..f67e36584 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 |