8 lines
81 B
Verilog
8 lines
81 B
Verilog
module hello;
|
|
initial
|
|
begin
|
|
$display("Hello, World");
|
|
$finish ;
|
|
end
|
|
endmodule
|