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

MOS bug fixes

tom-seddon opened this issue · comments

These would be perfect for feature flags:

OSBYTE $6b (MOS 3.20 only):

lda #ACCCON.X ; BUG! This should be TYA

QnD Y2K fix, so it's always 20xx:

lda #$19 ;it's always 19xx... right?
(should be lda #$20)

*MOVE permissions bug:

lda #$F0 ; Mask out 'public' access bits
(should be lda #$20) (see JGH's BuildMOS: https://mdfs.net/Info/Comp/BBC/SROMs/BuildMOS)