- [NEW] En el debugger, en el visor de memòria, tambe es veu cada byte del color del seu tag

- [NEW] En el debugger, en el visor de breakpoints, se marca uno si estem en eixe breakpoint
- [NEW] Opció per a sincronitzar el cursor del visor de memòria amb el cursor del desensamblador
- [NEW] Click on breakpoint to goto its address
- [FIX] IX, IX bit, IY i IY bit opcodes with displacement wher shown wrong on the disassembler
- [NEW] Symbols module shows a symbol highlighted if the cursor is on its address
- [NEW] Click on a symbol to move the cursor to its address
This commit is contained in:
2024-12-14 12:22:30 +01:00
parent 6768c01c81
commit 14d047cbb9
3 changed files with 66 additions and 17 deletions

View File

@@ -173,12 +173,11 @@ namespace z80dis
opcode_size+=1;
strcpy(base, buffer);
if (opcode_size>4) {
opcode_size=4;
sprintf(buffer, base, (int8_t)*(memory+2));
} else {
sprintf(buffer, base, (int8_t)*(memory+1));
}
if (opcode_size>4) opcode_size=4;
sprintf(buffer, base, (int8_t)*(memory+3));
//} else {
// sprintf(buffer, base, (int8_t)*(memory+1));
//}
}
return buffer;