applesoft_basic.git
2022-05-17 Nick DowningAdd applesoft-like (but not identical) tokenizer and...
2022-05-17 Nick DowningCorrectly handle DATA other than STR_LITERAL as unquote...
2022-05-17 Nick DowningImplement REM statement
2022-05-16 Nick DowningImplement PRINT TAB() and very basic cursor position...
2022-05-16 Nick DowningAdd TEXT, GR, COLOR=, PLOT, HLIN, VLIN statements
2022-05-16 Nick DowningAllow multiple arrays to be dimensioned in the same...
2022-05-16 Nick DowningAdd PEEK, POKE and CALL (via apple_io, to emulate any...
2022-05-16 Nick DowningAdd DIM statement, clean up parser to use lvalues prope...
2022-05-16 Nick DowningAdd LValue node, so that locating the variable for...
2022-05-16 Nick DowningRemove Node and NodeText prefixes on all class names...
2022-05-16 Nick DowningChange VARIABLE to VARIABLE_NAME, NodeTextVariable...
2022-05-16 Nick DowningChange NodeExpression to NodeRValue, NodeExpression...
2022-05-16 Nick DowningMake variables boxed for easy referencing and/or subscr...
2022-05-16 Nick DowningImplement data_types.py and STR, VAL() functions
2022-05-16 Nick DowningImplement INPUT
2022-05-16 Nick DowningTranslate cr to crlf at output similarly to how Apple...
2022-05-16 Nick DowningImplement console input, improve console output a bit...
2022-05-16 Nick DowningAdd apple_io module and HOME, NORMAL, INVERSE, FLASH...
2022-05-15 Nick DowningImplement READ, RESTORE and DATA, but no empty items...
2022-05-15 Nick DowningImplement FOR and NEXT
2022-05-15 Nick DowningImplement GOSUB and RETURN
2022-05-15 Nick DowningImprove number printing to make it more symmetrical...
2022-05-15 Nick DowningAdd END statement, fix float parsing with exponents
2022-05-15 Nick DowningFull type checking for expression evaluation
2022-05-15 Nick DowningImplement IF statement
2022-05-15 Nick DowningInitial commit, can interpret LET, PRINT and GOTO,...