Fix socket debugger

* fix compilation error
* fix off-by-one bug when writing to memory
This commit is contained in:
Jeremy Penner 2020-09-09 22:26:08 -04:00
parent 4805720545
commit 59374ca419

View File

@ -527,8 +527,8 @@ void handle_set_bytes(int address, char *bytes_data) {
while (sscanf(bytes_data, "%02x", &byte) == 1) {
printf("$%02x <---- BYTE @ $%06X\n", byte, address );
bytes_data += 2;
address++;
set_byte_at_address(address, byte & 0xFF);
address++;
}
}
@ -1313,7 +1313,7 @@ int do_dis_json(char *buf, word32 kpc, int accsize, int xsize, int op_provided,
sprintf(buf_disasm,"%s [$%0*x],Y",out,args*2,val);
break;
case IMMED:
case IMMEDIATE:
sprintf(buf_disasm,"%s #$%0*x",out, args*2, val);
break;