From 9c7da510fbd3b480a228cb222836fc23cc95fb53 Mon Sep 17 00:00:00 2001 From: David Harris Date: Mon, 8 Mar 2021 09:38:55 -0500 Subject: [PATCH] Created atomic test vector and directories --- wally-pipelined/src/ebu/ahblite.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wally-pipelined/src/ebu/ahblite.sv b/wally-pipelined/src/ebu/ahblite.sv index 10aa1f1a..ad604be5 100644 --- a/wally-pipelined/src/ebu/ahblite.sv +++ b/wally-pipelined/src/ebu/ahblite.sv @@ -102,7 +102,7 @@ module ahblite ( else NextBusState = IDLE; INSTRREAD: //if (~HREADY & (MemReadM | MemWriteM)) NextBusState = INSTRREADMEMPENDING; // *** shouldn't happen, delete if (~HREADY) NextBusState = INSTRREAD; - else NextBusState = IDLE; + else NextBusState = IDLE; // if (InstrReadF still high) INSTRREADMEMPENDING: if (~HREADY) NextBusState = INSTRREADMEMPENDING; // *** shouldn't happen, delete else if (MemReadM) NextBusState = MEMREAD; else NextBusState = MEMWRITE; // must be write if not a read. Don't return to idle.