mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
15 lines
212 B
Systemverilog
15 lines
212 B
Systemverilog
module top;
|
|
logic x;
|
|
always_comb
|
|
x = 0;
|
|
|
|
`include "always_comb.vh"
|
|
`TEST(_comb, 1)
|
|
`TEST(_comb, 2)
|
|
`TEST(@*, 3)
|
|
`TEST(@*, 4)
|
|
|
|
initial x1 = 0;
|
|
initial x3 = 0;
|
|
endmodule
|