Merge pull request #157 from fulano7/master

Added Verilog
This commit is contained in:
Mike Donaghy
2015-04-12 13:33:09 -04:00

7
v/verilog.v Normal file
View File

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