mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-17 13:00:29 +00:00
cxxrtl: store comb $print cell last EN/ARGS in module
statics were obviously wrong -- may be multiple instantiations of any given module. Extend test to cover this.
This commit is contained in:
parent
843ad9331b
commit
4ffdee65e0
3 changed files with 21 additions and 26 deletions
|
@ -1,7 +1,8 @@
|
|||
module tb;
|
||||
reg clk = 0;
|
||||
|
||||
top uut (.clk(clk));
|
||||
top uut1 (.clk(clk));
|
||||
top uut2 (.clk(clk));
|
||||
|
||||
always #1 clk <= ~clk;
|
||||
initial #20 $finish;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue