Skip to content

Commit

Permalink
#257 fixed disassembling in debugger, branch address was not correctl…
Browse files Browse the repository at this point in the history
…y calculated
  • Loading branch information
ThKattanek committed Jun 15, 2024
1 parent 465663f commit 77e530d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugger_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ void DebuggerWindow::FillDisassemblyList(uint16_t address, bool new_refresh)
break;
case 9:
tmp1 = ram1;
word = (pc+2)+tmp1;
word = (pc+2)+(char)tmp1;
sprintf(str00,"$%4.4X",word);
disass_addressing[i]->setText(str00);

Expand Down

0 comments on commit 77e530d

Please sign in to comment.