diff options
Diffstat (limited to 'testsuite/gna/bug24324/tb_thingy1.vhdl')
-rw-r--r-- | testsuite/gna/bug24324/tb_thingy1.vhdl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/gna/bug24324/tb_thingy1.vhdl b/testsuite/gna/bug24324/tb_thingy1.vhdl new file mode 100644 index 0000000..1a63a9e --- /dev/null +++ b/testsuite/gna/bug24324/tb_thingy1.vhdl @@ -0,0 +1,21 @@ +entity tb_thingy is +end tb_thingy; + +architecture tb of tb_thingy is + component thingy is + port ( + x_x : in bit; + y_y : out bit + ); + end component; + signal stimuli : bit; + signal response : bit; +begin + + dut : thingy + port map ( + x-x => stimuli, -- <== spelling error + y_y => response + ); + +end tb; |