1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-24 04:34:35 +00:00

atari.inc: add XDOS defines and remove trailing whitespace

This commit is contained in:
Christian Groessler 2016-05-24 00:10:47 +02:00
parent b0e929420b
commit 03cb0bd2fd

View File

@ -1004,6 +1004,21 @@ MYDOS = 3
XDOS = 4 XDOS = 4
NODOS = 255 NODOS = 255
;-------------------------------------------------------------------------
; XDOS defines (version 2.4, taken from xdos24.pdf)
;-------------------------------------------------------------------------
XOPT = $70B ; XDOS options
XCAR = $70C ; XDOS cartridge address (+ $70D)
XPAT = $86F ; XDOS bugfix and patch number
XVER = $870 ; XDOS version number
XFILE = $87D ; XDOS filename buffer
XLINE = $880 ; XDOS DUP input line
XGLIN = $871 ; get line
XSKIP = $874 ; skip parameter
XMOVE = $877 ; move filename
XGNUM = $87A ; get number
;------------------------------------------------------------------------- ;-------------------------------------------------------------------------
; End of atari.inc ; End of atari.inc
;------------------------------------------------------------------------- ;-------------------------------------------------------------------------