yosys/tests/various/debugon.ys

15 lines
201 B
Plaintext
Raw Normal View History

2026-01-15 21:07:26 +01:00
# Test debug -on/-off modes
design -reset
read_verilog <<EOT
module top(input a, input b, output y);
assign y = a & b;
endmodule
EOT
debug -on
hierarchy
select -assert-count 1 t:$and
debug -off