6 lines
99 B
Verilog
6 lines
99 B
Verilog
module hello;
|
|
initial begin
|
|
$display("hello world");
|
|
$finish;
|
|
end
|
|
endmodule |