mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-25 16:34:00 +00:00
debugged bug in debug
This commit is contained in:
parent
0e40e25710
commit
f30fe1a78a
@ -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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user