Files

9 lines
173 B
Verilog
Raw Permalink Normal View History

2020-12-11 12:41:59 -07:00
module Module(input clock, input clear, input data);
wire x, y;
assign y = data;
assign x = y;
task hello;
$display("Hello!");
endtask
endmodule