- [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:
11
z80dis.cpp
11
z80dis.cpp
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user