diff options
Diffstat (limited to 'testsuite/synth/issue1537/ent1.vhdl')
-rw-r--r-- | testsuite/synth/issue1537/ent1.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/synth/issue1537/ent1.vhdl b/testsuite/synth/issue1537/ent1.vhdl new file mode 100644 index 000000000..4a0f8433d --- /dev/null +++ b/testsuite/synth/issue1537/ent1.vhdl @@ -0,0 +1,13 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity ent1 is + port ( + o: out std_ulogic + ); +end entity; + +architecture arch of ent1 is +begin + o <= to_X01(std_ulogic' ('H')); +end architecture; |