mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-09-05 19:36:55 +02:00
15 lines
201 B
Plaintext
15 lines
201 B
Plaintext
# 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
|