tom-seddon / acorn_mos_disassembly

WIP disassembly of Acorn MOS, operating system for Acorn's 8-bit Master series

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OSWRCH improvement ideas

tom-seddon opened this issue · 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: