1
0

17 lines
240 B
VHDL
Raw Permalink Normal View History

2019-06-15 15:31:01 -06:00
entity e is
end entity e;
library std;
use std.textio.all;
architecture e of e is
begin
ee:
process is
variable eee : line;
begin
write(eee, string'("e"));
writeline(output, eee);
end process ee;
end architecture e;