From 4c311b059cd9ad731d33c13faf9077a940e123de Mon Sep 17 00:00:00 2001 From: Malte S. Stretz Date: Thu, 27 Aug 2009 15:24:26 +0200 Subject: [PATCH] Don't think too complicated. --- bos2k9_pump.vhd | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bos2k9_pump.vhd b/bos2k9_pump.vhd index eb9bfaf..394c352 100644 --- a/bos2k9_pump.vhd +++ b/bos2k9_pump.vhd @@ -134,8 +134,8 @@ begin elsif rising_edge(clock) then if busy_s = '0' then busy_s <= txn; - elsif state_s = next_state_c then - busy_s <= not done_s; + elsif state_s = idle_state_c then + busy_s <= '0'; end if; end if; end process; -- 1.7.2.3