Open rjhelms opened 2 years ago
Looking at Applesoft - it replaces INLIN/GETLIN logic with its own monitor routine (GETLN at FD6A: https://6502disassembly.com/a2-rom/OrigF8ROM.html#SymGETLN) which handles building the whole input buffer and passes it back to BASIC complete.
Alternately, could consider the line editing functions in inline.s, which seem to be:
_
- backspace (look at MICROTAN hook for this one!)
@
- cancel line
BEL - ???
Not sure if I can just hack in from the support that is there, or have to implement my own. What does CBM BASIC do?
At minimum, need to have backspace working or I'll go insane.