Difference between revisions of "OSWRSC"
m (1 revision) |
(Updated implementation details, added coding section.) |
||
Line 44: | Line 44: | ||
==Implementations== | ==Implementations== | ||
− | The call was introduced in MOS 2.00, and is absent in earlier versions. | + | The call was introduced in MOS 2.00, and is absent in earlier versions. |
− | is | + | In MOS 2.00 calls write to the currently displayed screen memory. On the |
− | + | Master series the call writes to whichever screen memory is being accessed | |
+ | by the VDU. | ||
− | [[User:Jgharston|Jgharston]] | + | OSWRSC is not implemented on non-6502 platforms and BBC BASIC does not |
+ | emulate its entry point. | ||
+ | |||
+ | ==Coding== | ||
+ | The function FNwm(), if used on the I/O processor, will write a byte to | ||
+ | screen or main memory. | ||
+ | |||
+ | DEFPROCwm(!&D6,A%):IF!&D6<0:IF?&D8=&FE:CALL&FFB3:ENDPROC ELSE ?!D6=A%:ENDPROC | ||
+ | |||
+ | If the passed address is &FFFExxxx it writes to the currently displayed screen | ||
+ | memory, otherwise it writes to main memory. | ||
+ | |||
+ | -- [[User:Beardo|beardo]] 23:20, 5 October 2007 (BST) | ||
+ | [[User:Jgharston|Jgharston]] ([[User talk:Jgharston|talk]]) 04:26, 29 March 2015 (UTC) |
Revision as of 05:26, 29 March 2015
Writes a byte to screen.
Specification
On entry: | |
?&D6 | = LSB of address to be read |
?&D7 | = MSB of address to be read |
A | = Byte to be written |
On exit: | |
A,X,Y | = preserved |
C | undefined |
Stores a byte in an address the current display memory (in main or [[shadow RAM]]). The address to be written to is given in locations &D6 (low byte) and &D7 (high byte), and byte to be written is passed in A. Although this call is the complement of OSRDSC which is able to read from sideways ROMs, this call only writes to the currently displayed memory and the currently selected sideways RAM bank.
Also note that the address is passed in a different location to OSRDSC.
Calling from BBC BASIC
- BASIC does not call OSRDSC
Entry points
- BBC BASIC Entry Address: none
- 6502 Entry Address: &FFB3
- Z80 Entry Address: none
- 6809 Entry Address:
- 80x86 Entry Address: none
- 32000 Entry Address: none
- PDP-11 Entry Address: none
- ARM Entry Address: none
Implementations
The call was introduced in MOS 2.00, and is absent in earlier versions. In MOS 2.00 calls write to the currently displayed screen memory. On the Master series the call writes to whichever screen memory is being accessed by the VDU.
OSWRSC is not implemented on non-6502 platforms and BBC BASIC does not emulate its entry point.
Coding
The function FNwm(), if used on the I/O processor, will write a byte to screen or main memory.
DEFPROCwm(!&D6,A%):IF!&D6<0:IF?&D8=&FE:CALL&FFB3:ENDPROC ELSE ?!D6=A%:ENDPROC
If the passed address is &FFFExxxx it writes to the currently displayed screen memory, otherwise it writes to main memory.
-- beardo 23:20, 5 October 2007 (BST) Jgharston (talk) 04:26, 29 March 2015 (UTC)