3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-04 10:20:24 +00:00

Merge branch 'xaig_dff' of github.com:YosysHQ/yosys into xaig_dff

This commit is contained in:
Eddie Hung 2019-11-23 08:38:48 -08:00
commit b46e636c91
3 changed files with 11 additions and 11 deletions

View file

@ -10,9 +10,9 @@ unknown u(~i, w);
unknown2 u2(w, o);
endmodule
module abc9_test031(input clk, d, r, output reg q);
module abc9_test032(input clk, d, r, output reg q);
initial q = 1'b0;
always @(negedge clk or negedge r)
if (r) q <= 1'b0;
if (!r) q <= 1'b0;
else q <= d;
endmodule

View file

@ -24,9 +24,9 @@ select -assert-count 1 t:unknown
select -assert-none t:$lut t:unknown %% t: %D
design -load read
hierarchy -top abc9_test031
hierarchy -top abc9_test032
proc
async2sync
clk2fflogic
design -save gold
abc9 -lut 4