Files
iverilog/ivtest/vpi/br_gh317.v
T
Stephen Williams cea237b407 Add ivtest to the iverilog source tree
By adding ivtest to the iverilog source tree, it is easier to keep
the regression test synchronized with the source that is being tested.
This should be especially helpful for PRs that add a new feature, and
have a matching ivtest PR with the regression test for that feature.
2022-01-15 10:18:50 -08:00

24 lines
352 B
Verilog

module \esc.mod ;
\esc.sub \esc.inm (1'b1);
sub inst();
endmodule
module \esc.sub (input wire \esc.port );
reg \esc.val ;
reg normal;
initial begin
$print_if_found();
normal = 1'b0;
\esc.val = 1'b1;
end
endmodule
module sub;
reg \esc.id ;
reg normal;
initial begin
normal = 1'b1;
\esc.id = 1'b0;
end
endmodule