Skip to content
Snippets Groups Projects
Commit c6aed681 authored by Wesley W. Terpstra's avatar Wesley W. Terpstra
Browse files

Slaves should be told the address width as well.

parent c3caf876
No related merge requests found
......@@ -247,6 +247,9 @@ resume_cycle:
/* Create a mask for filtering out the important write data */
data_mask = ~(eb_data_t)0;
data_mask >>= (sizeof(eb_data_t) - op_width) << 3;
/* Put the address width back into the result */
op_width |= (addr << 4);
/* Is the cycle flag high? */
cycle = flags & EB_RECORD_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