sub-blocks, part 1
currently awful
This commit is contained in:
parent
c110f87548
commit
d5f1d3c25c
5 changed files with 186 additions and 77 deletions
|
|
@ -101,6 +101,9 @@ String disasmCmd(unsigned char* buf, size_t bufLen, unsigned int addr) {
|
|||
case 0xf1:
|
||||
return "nop";
|
||||
break;
|
||||
case 0xf3:
|
||||
return fmt::sprintf("loop (-%d), %d",(int)buf[addr+1],(int)buf[addr+2]);
|
||||
break;
|
||||
case 0xf4:
|
||||
if (addr+2>=bufLen) return "???";
|
||||
return fmt::sprintf("callsym %.4x",(int)(buf[addr+1]|(buf[addr+2]<<8)));
|
||||
|
|
@ -367,7 +370,6 @@ void FurnaceGUI::drawCSPlayer() {
|
|||
}
|
||||
if (!highlights.empty()) nextHighlight=highlights[0];
|
||||
|
||||
|
||||
for (int i=csClipper.DisplayStart; i<csClipper.DisplayEnd; i++) {
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableNextColumn();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue