COMS30046_2022_TB-2_playground/verilog_iverilog/hello_world/hello.v

8 lines
81 B
Verilog

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