Difference between revisions of "OSBYTE &93"
m (1 revision) |
m (1 revision) |
(No difference)
|
Revision as of 19:12, 8 March 2015
OSBYTE &93 (147) - Write FRED
X=offset within page &FC and Y=byte to write
- Warning
Acorn MOS 1.20 writes the byte using STA &FC00,X
(at address &EAF5). As it is an indexed-addressing instruction, the 6502 CPU performs a dummy read immediately before the write. Some hardware, though not all, may operate inappropriately due to the dummy read: outputs could momentarily be set to the wrong level, or an interrupt condition could be cleared and lost. Review the datasheet for the hardware being accessed to see whether it will be adversely affected.
The safe alternative is to call OSWORD &06 with !XY = &FFFFFCxx and XY?4 = byte to write.
See Also
Jgharston 22:04, 26 May 2009 (UTC)