mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
Merge pull request #1156 from YosysHQ/eddie/fix_abc9_unknown_cell
write_xaiger to treat unknown cell connections as keep-s
This commit is contained in:
commit
de26328130
3 changed files with 28 additions and 6 deletions
|
@ -3,3 +3,7 @@ initial o = 1'b0;
|
|||
always @*
|
||||
o <= ~o;
|
||||
endmodule
|
||||
|
||||
module abc9_test028(input i, output o);
|
||||
unknown u(~i, o);
|
||||
endmodule
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
read_verilog abc9.v
|
||||
design -save read
|
||||
hierarchy -top abc9_test027
|
||||
proc
|
||||
design -save gold
|
||||
|
||||
|
@ -12,3 +14,11 @@ design -import gate -as gate
|
|||
miter -equiv -flatten -make_assert -make_outputs gold gate miter
|
||||
sat -verify -prove-asserts -show-ports miter
|
||||
|
||||
design -load read
|
||||
hierarchy -top abc9_test028
|
||||
proc
|
||||
|
||||
abc9 -lut 4
|
||||
select -assert-count 1 t:$lut r:LUT=1 r:WIDTH=1 %i %i
|
||||
select -assert-count 1 t:unknown
|
||||
select -assert-none t:$lut t:unknown %% t: %D
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue