We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LOAD fails to load the complete program if a program line number in hex includes 0x1A, for example:
1000 PRINT "HELLO" 1050 PRINT "GOODBYE"
In this example line 1050 (0x041A) will fail to load.
The text was updated successfully, but these errors were encountered:
Issue is caused by the 'end of file' detection incorrectly identifying the 0x1A in the line number as EOF.
Sorry, something went wrong.
Fixes #5 LOAD issue
191d414
No branches or pull requests
LOAD fails to load the complete program if a program line number in hex includes 0x1A, for example:
1000 PRINT "HELLO"
1050 PRINT "GOODBYE"
In this example line 1050 (0x041A) will fail to load.
The text was updated successfully, but these errors were encountered: