1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

rename CIOV and SIOV to CIOV_org and SIOV_org for atarixl target

This commit is contained in:
Christian Groessler 2013-05-31 01:37:40 +02:00
parent 164fb56580
commit c1468f11b2
2 changed files with 9 additions and 2 deletions

View File

@ -956,8 +956,15 @@ CASETV = $E440 ;cassette handler vector table
DISKIV = $E450 ;vector to initialize DIO
DSKINV = $E453 ;vector to DIO
.if .defined(__ATARIXL__)
CIOV = $C0
SIOV = $C3
CIOV_org = $E456 ;vector to CIO
SIOV_org = $E459 ;vector to SIO
.else
CIOV = $E456 ;vector to CIO
SIOV = $E459 ;vector to SIO
.endif
SETVBV = $E45C ;vector to set VBLANK parameters
SYSVBV = $E45F ;vector to process immediate VBLANK
XITVBV = $E462 ;vector to process deferred VBLANK

View File

@ -36,7 +36,7 @@ cont: ldx #0 ; channel 0
sta ICBLH,x
lda #PUTCHR
sta ICCOM,x
jsr CIOV
jsr CIOV_org
.endmacro
.macro print_string2 addr, len
@ -51,7 +51,7 @@ cont: ldx #0 ; channel 0
sta ICBLH,x
lda #PUTCHR
sta ICCOM,x
jsr CIOV
jsr CIOV_org
.endmacro