sv2v/test/core/assert.v

9 lines
173 B
Verilog
Raw Normal View History

module Module(input clock, input clear, input data);
wire x, y;
assign y = data;
assign x = y;
task hello;
$display("Hello!");
endtask
endmodule