From 427fed23eec2f09eb93bf08a5ac1a4cd41d0a2c2 Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Fri, 20 Nov 2020 18:53:09 -0500 Subject: [PATCH] machxo2: Improve LUT4 techmap. Use same output port name for LUT4 as Lattice. --- techlibs/machxo2/cells_map.v | 4 ++-- techlibs/machxo2/cells_sim.v | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/techlibs/machxo2/cells_map.v b/techlibs/machxo2/cells_map.v index 054b678b3..924df6f25 100644 --- a/techlibs/machxo2/cells_map.v +++ b/techlibs/machxo2/cells_map.v @@ -17,11 +17,11 @@ module \$lut (A, Y); end else if(WIDTH == 4) begin assign I = {A[3], A[2], A[1], A[0]}; end else begin - INVALID_LUT_WIDTH error(); + wire _TECHMAP_FAIL_ = 1; end endgenerate - LUT4 #(.INIT({rep{LUT}})) _TECHMAP_REPLACE_ (.A(I[0]), .B(I[1]), .C(I[2]), .D(I[3]), .F(Y)); + LUT4 #(.INIT({rep{LUT}})) _TECHMAP_REPLACE_ (.A(I[0]), .B(I[1]), .C(I[2]), .D(I[3]), .Z(Y)); endmodule module \$_DFF_P_ (input D, C, output Q); FACADE_FF #(.CEMUX("1"), .CLKMUX("CLK"), .LSRMUX("LSR"), .REGSET("RESET")) _TECHMAP_REPLACE_ (.CLK(C), .LSR(1'b0), .DI(D), .Q(Q)); endmodule diff --git a/techlibs/machxo2/cells_sim.v b/techlibs/machxo2/cells_sim.v index 8db73c50c..2c4d2f462 100644 --- a/techlibs/machxo2/cells_sim.v +++ b/techlibs/machxo2/cells_sim.v @@ -2,7 +2,7 @@ module LUT4 #( parameter [15:0] INIT = 0 ) ( input A, B, C, D, - output F + output Z ); wire [3:0] I; wire [3:0] I_pd; @@ -14,7 +14,7 @@ module LUT4 #( endgenerate assign I = {D, C, B, A}; - assign F = INIT[I_pd]; + assign Z = INIT[I_pd]; endmodule module FACADE_FF #( -- 2.30.2