From a89c839d29b55d7cca43d98e84a7780f7c7bcee4 Mon Sep 17 00:00:00 2001 From: Arlet Date: Sat, 8 Oct 2011 17:52:03 +0200 Subject: [PATCH] Added RDY term to AB Hold update --- cpu.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu.v b/cpu.v index ad676b4..7539e7b 100644 --- a/cpu.v +++ b/cpu.v @@ -411,7 +411,7 @@ always @* * source of the address, such as the ALU or DI. */ always @(posedge clk) - if( state != PUSH0 && state != PUSH1 && + if( state != PUSH0 && state != PUSH1 && RDY && state != PULL0 && state != PULL1 && state != PULL2 ) begin ABL <= AB[7:0];