3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/tests/techmap/bug2321.ys
2020-08-05 12:28:18 +02:00

16 lines
223 B
Plaintext

read_verilog <<EOT
module m (input i, output o);
wire [1023:0] _TECHMAP_DO_00_ = "CONSTMAP; ";
endmodule
EOT
design -stash map
read_verilog <<EOT
module top(output o);
m m (.o(o), .i(o));
endmodule
EOT
techmap -map %map