debugged bug in debug

This commit is contained in:
Denis Molony 2021-07-27 17:58:39 +10:00
parent 0e40e25710
commit f30fe1a78a
1 changed files with 2 additions and 6 deletions

View File

@ -206,17 +206,13 @@ public class CPMBasicFile extends BasicProgram
break;
int lineNumber = getShort (buffer, ptr + 2);
text.append (String.format (" %d ", lineNumber));
lastPtr = ptr;
ptr = nextAddress - loadAddress;
text.append (HexFormatter.getHexString (buffer, lastPtr + 4, ptr - lastPtr));
text.append (String.format (" %d ", lineNumber));
text.append (HexFormatter.getHexString (buffer, lastPtr + 4, ptr - lastPtr - 4));
text.append ("\n");
if (ptr < 0 || ptr >= buffer.length)
break;
if (buffer[ptr - 1] != 0) // end of previous line
break;
}
return text.toString ();