diff options
Diffstat (limited to 'testsuite/pyunit/Current.vhdl')
-rw-r--r-- | testsuite/pyunit/Current.vhdl | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/testsuite/pyunit/Current.vhdl b/testsuite/pyunit/Current.vhdl index 1f802af47..81887ae7f 100644 --- a/testsuite/pyunit/Current.vhdl +++ b/testsuite/pyunit/Current.vhdl @@ -136,20 +136,29 @@ begin inst1: entity work.counter1(rtl) generic map ( - BITS => 8 + BITS1 => 8 ) port map ( - clk => Clock + clk1 => Clock ); inst2: component counter2 + generic map ( + BITS2 => 8, + value2 + ) port map ( - clk => Clock + clk2 => Clock, + enable2 ); inst3: configuration counter3 + generic map ( + BITS3 => 8 + ) port map ( - clk => Clock + clk3 => Clock, + control(0) => battery and emergency ); blk: block @@ -215,7 +224,8 @@ begin end block; end generate; - call: OtherDummy; + call: CallDummy; + called: CalledDummy(25); ende: std.env.stop; end architecture behav; |