Skip to content
Snippets Groups Projects
Commit 35b0459e authored by Stefan Rauch's avatar Stefan Rauch
Browse files

error flag endianess changed

parent 61a93c7a
Branches
Tags
No related merge requests found
......@@ -121,7 +121,7 @@ begin
wb_stall <= slave_o.stall when wb_bar = "001" else '0';
wb_ack <= slave_o.ack when wb_bar = "001" else r_ack;
wb_dat <= slave_o.dat when wb_bar = "001" else
r_error(63 downto 32) when r_high = '1' else
r_error(63 downto 32) when r_high = '0' else
r_error(31 downto 0);
slave_i.cyc <= r_cyc;
......
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