RosettaCodeData/Task/Hello-world-Text/VHDL/hello-world-text.vhd
2026-04-30 12:34:36 -04:00

16 lines
307 B
VHDL

LIBRARY std;
USE std.TEXTIO.all;
entity test is
end entity test;
architecture beh of test is
begin
process
variable line_out : line;
begin
write(line_out, string'("Hello world!"));
writeline(OUTPUT, line_out);
wait; -- needed to stop the execution
end process;
end architecture beh;