From e0d31dc4d01eb9184ef9c1f8d16fadbae8e891d7 Mon Sep 17 00:00:00 2001 From: Alexander Oh Date: Tue, 25 May 2010 04:07:40 +0200 Subject: [PATCH] made small changed to testing code --- src/beh_pc_communication_tb.vhd | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/beh_pc_communication_tb.vhd b/src/beh_pc_communication_tb.vhd index 854e7ee..b43d99e 100644 --- a/src/beh_pc_communication_tb.vhd +++ b/src/beh_pc_communication_tb.vhd @@ -82,8 +82,8 @@ begin tx_done <= '0'; wait until rising_edge(tx_new); wait for 90 ns; - tx_done <= '1'; - wait for 90 ns; + tx_done <= '1'; -- FIXME: why is this unresolved? + wait for 30 ns; end process stub_uart; reset_and_button : process @@ -96,7 +96,6 @@ begin rx_data <= "00000000"; d_zeile <= "0000000"; d_spalte <= "0000000"; - tx_new <= '0'; tx_done <= '0'; rx_new <= '0'; @@ -106,7 +105,9 @@ begin btn_a <= '1'; wait for 15 ns; btn_a <= '0'; - wait; + --wait; + wait for 1000 ns; + assert false report "test beendet" severity failure; end process reset_and_button; end architecture sim; -- 2.25.1