Verilog/00-hello_world/hello_world.v
Ahmet Kaan GÜMÜŞ 13b2826b20 feat: hello world
2024-10-25 15:20:43 +03:00

6 lines
No EOL
106 B
Verilog

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