From 794d22969dae1a31af36719574351cf75e4fe033 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Mon, 27 Apr 2015 10:16:07 +0200 Subject: Added simplemap $lut support --- techlibs/common/techmap.v | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'techlibs/common') 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 -- cgit v1.2.3