Files

15 lines
206 B
Verilog
Raw Permalink Normal View History

2023-12-26 09:21:19 -07:00
module top;
reg x;
initial
x = 0;
`include "always_comb.vh"
`TEST(@(x1), 1)
`TEST(@(x1), 2)
`TEST(@*, 3)
`TEST(@*, 4)
initial x1 = 0;
initial x3 = 0;
endmodule