3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-25 16:42:35 +00:00

Merge remote-tracking branch 'upstream/main'

This commit is contained in:
Akash Levy 2026-01-21 15:13:57 -08:00
commit b11037e6c6
15 changed files with 2026 additions and 151 deletions

File diff suppressed because it is too large Load diff

14
tests/various/debugon.ys Normal file
View file

@ -0,0 +1,14 @@
# 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