- [x] `CALL` does not take parameters. - [x] `CLEAR` does not: * close all files. * mute the PSG. * reset the ON ERROR state - [x] `CLOSE` does not: * close all files if no parameter is specified. * work if the # is not included. - [x] `END` does not close all files. - [x] `KEY {ON|OFF}` does not do anything. - [x] `LIST` does not behave as described in the docs. - [ ] `DELETE` does not match the syntax in the manual (should work like `LIST`). - [ ] `PRINT USING` not yet implemented. - [ ] `RENUM` does not behave as described in the docs. - [x] `SCREEN` is not implemented. - [ ] `SEEK` is not implemented. - [ ] `SOUND` should use the PSG. - [ ] `STRING$` should support characters as well as code points. - [ ] `TAB` should take an optional vertical parameter (as per C64). - [ ] `WAIT` should be extended to support waiting for a port input. - [ ] `DEF FN A()=FN A()` causes a memory leak. Document that this will happen and to use `DEF FN A()=VAL {FN A()}`
CALLdoes not take parameters.CLEARdoes not:CLOSEdoes not:ENDdoes not close all files.KEY {ON|OFF}does not do anything.LISTdoes not behave as described in the docs.DELETEdoes not match the syntax in the manual (should work likeLIST).PRINT USINGnot yet implemented.RENUMdoes not behave as described in the docs.SCREENis not implemented.SEEKis not implemented.SOUNDshould use the PSG.STRING$should support characters as well as code points.TABshould take an optional vertical parameter (as per C64).WAITshould be extended to support waiting for a port input.DEF FN A()=FN A()causes a memory leak. Document that this will happen and to useDEF FN A()=VAL {FN A()}