mirror of https://github.com/YosysHQ/yosys.git
abc9: aAdd test to check $_NOT_s are absorbed
This commit is contained in:
parent
05c8858a90
commit
5918ede9bd
|
@ -38,3 +38,15 @@ abc9 -lut 4
|
|||
design -load gold
|
||||
scratchpad -copy abc9.script.flow3 abc9.script
|
||||
abc9 -lut 4
|
||||
|
||||
|
||||
design -reset
|
||||
read_verilog -icells <<EOT
|
||||
module top(input a, b, output o);
|
||||
assign o = ~(a & b);
|
||||
endmodule
|
||||
EOT
|
||||
abc9 -lut 4
|
||||
clean
|
||||
select -assert-count 1 t:$lut
|
||||
select -assert-none t:$lut t:* %D
|
||||
|
|
Loading…
Reference in New Issue