mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 19:00:26 +00:00
machxo2: Fix more oversights in machxo2 models. logic.ys test passes.
This commit is contained in:
parent
9cb0bae1b2
commit
044393b990
2 changed files with 6 additions and 2 deletions
|
@ -42,7 +42,7 @@ module FACADE_FF #(
|
|||
|
||||
wire muxlsr = (LSRMUX == "INV") ? ~LSR : LSR;
|
||||
wire muxclk = (CLKMUX == "INV") ? ~CLK : CLK;
|
||||
assign srval = (REGSET == "SET") ? 1'b1 : 1'b0;
|
||||
wire srval = (REGSET == "SET") ? 1'b1 : 1'b0;
|
||||
|
||||
generate
|
||||
if (SRMODE == "ASYNC") begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue