Files
hello-world/v/verilog.v
2018-08-22 01:37:32 -03:00

8 lines
98 B
Verilog
Executable File

module main;
initial
begin
$display("Hello World!");
$finish;
end
endmodule