Richie Bendall ad16f6d78a
Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-03-30 04:21:52 +13:00

13 lines
218 B
VHDL
Executable File

use std.textio.all;
entity hello_world is
end hello_world;
architecture behaviour of hello_world is
begin
process
begin
write (output, String'("Hello World"));
wait;
end process;
end behaviour;