renamed constant

This commit is contained in:
Denis Molony 2021-01-03 16:16:24 +10:00
parent f32be5d55a
commit dd547ac58b
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ public interface ApplesoftConstants
static final byte TOKEN_LET = (byte) 0xAA;
static final byte TOKEN_GOTO = (byte) 0xAB;
static final byte TOKEN_IF = (byte) 0xAD;
static final byte TOKEN_AND = (byte) 0xAF;
static final byte TOKEN_AMPERSAND = (byte) 0xAF;
static final byte TOKEN_GOSUB = (byte) 0xB0;
static final byte TOKEN_RETURN = (byte) 0xB1;
static final byte TOKEN_REM = (byte) 0xB2;

View File

@ -42,7 +42,7 @@ public class SubLine
doAlpha ();
if (is (ApplesoftConstants.TOKEN_REM) || is (ApplesoftConstants.TOKEN_DATA)
|| is (ApplesoftConstants.TOKEN_AND))
|| is (ApplesoftConstants.TOKEN_AMPERSAND))
return;
int ptr = startPtr;