Skip to content
Snippets Groups Projects
Commit a9be15e6 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski
Browse files

wishbone/wb_slave_adapter: checks stall line only in PIPELINED mode

parent 4e1e6fb5
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% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment