langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
16
Task/Hello-world-Text/VHDL/hello-world-text.vhdl
Normal file
16
Task/Hello-world-Text/VHDL/hello-world-text.vhdl
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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'("Goodbye, World!"));
|
||||
writeline(OUTPUT, line_out);
|
||||
wait; -- needed to stop the execution
|
||||
end process;
|
||||
end architecture beh;
|
||||
Loading…
Add table
Add a link
Reference in a new issue