mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
fix incorrect disassembly of MOV rx_fifo (#2067)
This commit is contained in:
parent
c2118cc005
commit
06a244b2b5
1 changed files with 2 additions and 2 deletions
|
|
@ -90,8 +90,8 @@ std::string disassemble(uint inst, uint sideset_bits_including_opt, bool sideset
|
||||||
invalid = true;
|
invalid = true;
|
||||||
} else {
|
} else {
|
||||||
std::string index;
|
std::string index;
|
||||||
if (arg2 & 8) index = "y";
|
if (arg2 & 8) index = std::to_string(arg2 & 3);
|
||||||
else index = std::to_string(arg2 & 7);
|
else index = "y";
|
||||||
std::string guts = "";
|
std::string guts = "";
|
||||||
op("mov");
|
op("mov");
|
||||||
if (arg1 & 4) {
|
if (arg1 & 4) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue