mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-03-14 13:21:06 +00:00
fix incorrect disassembly of MOV rx_fifo (#2067)
This commit is contained in:
parent
c2118cc005
commit
06a244b2b5
@ -90,8 +90,8 @@ std::string disassemble(uint inst, uint sideset_bits_including_opt, bool sideset
|
||||
invalid = true;
|
||||
} else {
|
||||
std::string index;
|
||||
if (arg2 & 8) index = "y";
|
||||
else index = std::to_string(arg2 & 7);
|
||||
if (arg2 & 8) index = std::to_string(arg2 & 3);
|
||||
else index = "y";
|
||||
std::string guts = "";
|
||||
op("mov");
|
||||
if (arg1 & 4) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user