mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-16 06:31:29 +00:00
machxo2: Improve LUT4 techmap. Use same output port name for LUT4 as Lattice.
This commit is contained in:
parent
19b043344c
commit
427fed23ee
2 changed files with 4 additions and 4 deletions
|
@ -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 #(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue