diff --git a/e.vhd b/e.vhd new file mode 100644 index 0000000..7aa30f3 --- /dev/null +++ b/e.vhd @@ -0,0 +1,16 @@ +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;