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

wishbone/wb_slave_adapter: prevents a pipelined master from chaging data/addr...

wishbone/wb_slave_adapter: prevents a pipelined master from chaging data/addr lines when talking to classic slave
parent 71f40209
Branches
Tags
No related merge requests found
......@@ -187,7 +187,7 @@ begin -- rtl
if(fsm_state = WAIT4ACK) then
slave_out.stall <= not slave_out.ack;
else
slave_out.stall <= '0';
slave_out.stall <= slave_in.stb;
end if;
else
master_out.stb <= slave_in.stb;
......
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