Skip to content
Snippets Groups Projects
Commit 65d7ea67 authored by Tomasz Włostowski's avatar Tomasz Włostowski
Browse files

wishbone/wb_slave_adapter: checks stall line only in PIPELINED mode

parent 065baec2
No related branches found
No related tags found
No related merge requests found
...@@ -154,7 +154,7 @@ begin -- rtl ...@@ -154,7 +154,7 @@ begin -- rtl
else else
case fsm_state is case fsm_state is
when IDLE => when IDLE =>
if(slave_in.stb = '1' and master_in.stall = '0' and master_in.ack = '0') then if(slave_in.stb = '1' and (master_in.stall = '0' or g_master_mode = CLASSIC) and master_in.ack = '0') then
fsm_state <= WAIT4ACK; fsm_state <= WAIT4ACK;
end if; end if;
when WAIT4ACK => when WAIT4ACK =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment