Files
china-dictatorship/hello-world/v/VHDL.vhdl

13 lines
218 B
VHDL
Raw Normal View History

2021-03-24 00:00:01 +00:00
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;