mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
parent
beab15b77c
commit
c2bf11e42a
2 changed files with 19 additions and 1 deletions
|
@ -16,3 +16,21 @@ EOT
|
|||
techmap -map %techmap
|
||||
select -assert-any w:s0.asdf
|
||||
select -assert-any c:s0.blah
|
||||
|
||||
read_verilog <<EOT
|
||||
module sub(input i, output o, input j);
|
||||
wire _TECHMAP_REPLACE_.asdf = i ;
|
||||
barfoo _TECHMAP_REPLACE_.blah (i, o, j);
|
||||
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
|
||||
select -assert-any c:s0.blah
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue