mirror of https://github.com/YosysHQ/yosys.git
17 lines
295 B
Plaintext
17 lines
295 B
Plaintext
|
read_verilog <<EOT
|
||
|
module sub(input i, output o, input j);
|
||
|
foobar _TECHMAP_REPLACE_(i, o, j);
|
||
|
wire _TECHMAP_REPLACE_.asdf = i ;
|
||
|
endmodule
|
||
|
EOT
|
||
|
design -stash techmap
|
||
|
|
||
|
read_verilog <<EOT
|
||
|
module top(input i, output o);
|
||
|
sub s0(i, o);
|
||
|
endmodule
|
||
|
EOT
|
||
|
|
||
|
techmap -map %techmap
|
||
|
select -assert-any w:s0.asdf
|