Richie Bendall c8fc6cd6d3
Meta tweaks
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2021-03-15 16:18:40 +13:00

13 lines
218 B
VHDL

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;