Added Verilog

This commit is contained in:
fulano7
2014-11-25 21:06:25 -03:00
parent 4691aea289
commit 039c3a0982

7
v/verilog.v Normal file
View File

@@ -0,0 +1,7 @@
module main;
initial
begin
$display("Hello World!");
$finish;
end
endmodule