Comment Re:there are Programmers then here are PROGRAMMERS (Score 1) 597
Interpreter code is quite simple; what you mostly do is analyze and tokenize a text stream. 64k is a really generous amount of RAM for that task if you are at least a half decent coder with some Assembler experience. Ages ago I did elaborate string processing on an 8086 using Assembler, within a 64k shared code/data segment. It's really not hard if you know how the underlying processor architecture behaves, which in turn is a requirement for actually programming in Assembler.