tom-seddon/acorn_mos_disassembly

OSWRCH improvement ideas

tom-seddon opened this issue · 2 comments

Squeeze out a bit more speed in the common case. In my quick test of LISTing a 200-odd line BASIC program, the LIST took 0.95 the time. Insert before this line:

                ; Early out when doing VDU output only.
                lda characterDestinationStatus
                beq LE8A5

jsr selectMOS in MOS 3.50 here that could be inlined (as per MOS 3.20):

jsr selectMOS

Some pointless-looking code here: