mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
Merge remote-tracking branch 'origin/master' into eddie/wreduce_add
This commit is contained in:
commit
26cb3e7afc
56 changed files with 763 additions and 172 deletions
2
tests/various/.gitignore
vendored
2
tests/various/.gitignore
vendored
|
@ -1,2 +1,4 @@
|
|||
/*.log
|
||||
/*.out
|
||||
/write_gzip.v
|
||||
/write_gzip.v.gz
|
||||
|
|
BIN
tests/various/gzip_verilog.v.gz
Normal file
BIN
tests/various/gzip_verilog.v.gz
Normal file
Binary file not shown.
2
tests/various/gzip_verilog.ys
Normal file
2
tests/various/gzip_verilog.ys
Normal file
|
@ -0,0 +1,2 @@
|
|||
read_verilog gzip_verilog.v.gz
|
||||
select -assert-any top
|
16
tests/various/write_gzip.ys
Normal file
16
tests/various/write_gzip.ys
Normal file
|
@ -0,0 +1,16 @@
|
|||
read -vlog2k <<EOT
|
||||
module top(input a, output y);
|
||||
assign y = !a;
|
||||
endmodule
|
||||
EOT
|
||||
|
||||
prep -top top
|
||||
write_verilog write_gzip.v.gz
|
||||
design -reset
|
||||
|
||||
! rm -f write_gzip.v
|
||||
! gunzip write_gzip.v.gz
|
||||
read -vlog2k write_gzip.v
|
||||
! rm -f write_gzip.v
|
||||
hierarchy -top top
|
||||
select -assert-any top
|
Loading…
Add table
Add a link
Reference in a new issue