3 comments:
offs = writearr[1] << 24 | writearr[2] << 16 |
writearr[3] << 8 | writearr[4];
For better readability, converting this into one line.
offs = writearr[1] << 24 | writearr[2] << 16 |
writearr[3] << 8 | writearr[4];
For better readability, converting this into one line.
Patch Set #6, Line 753: emu_modified = 1;
Added this line in patch#6 after rebasing this on https://review.coreboot.org/c/flashrom/+/44907.
To view, visit change 44881. To unsubscribe, or for help writing mail filters, visit settings.