1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

fix space/column

This commit is contained in:
jede 2021-03-11 22:52:41 +01:00 committed by Oliver Schmidt
parent c0d638a26d
commit b9fd318985
2 changed files with 12 additions and 14 deletions

View File

@ -48,33 +48,33 @@ TR7 := $13
DEFAFF := $14 DEFAFF := $14
IRQSVA := $21 ; Used to save A when a BRK call occurs IRQSVA := $21 ; Used to save A when a BRK call occurs
IRQSVX := $22 ; Used to save X when a BRK call occurs IRQSVX := $22 ; Used to save X when a BRK call occurs
IRQSVY := $23 ; Used to save Y when a BRK call occurs IRQSVY := $23 ; Used to save Y when a BRK call occurs
IRQSVP := $24 ; Used to save P when a BRK call occurs IRQSVP := $24 ; Used to save P when a BRK call occurs
ADSCR := $26 ADSCR := $26
SCRNB := $28 ; Id of the current window SCRNB := $28 ; Id of the current window
ADKBD := $2A ; Address ASCII conversion table ADKBD := $2A ; Address ASCII conversion table
PTR_READ_DEST := $2C ; Used for XFREAD and XWRITE only in TELEMON 3.x PTR_READ_DEST := $2C ; Used for XFREAD and XWRITE only in TELEMON 3.x
ADCLK := $40 ; Address for clock display ADCLK := $40 ; Address for clock display
TIMEUS := $42 TIMEUS := $42
TIMEUD := $44 ; Counter clock (1/10 of a second) TIMEUD := $44 ; Counter clock (1/10 of a second)
HRSX := $46 HRSX := $46
HRSY := $47 HRSY := $47
XLPRBI := $48 ; Printer flag (b7) XLPRBI := $48 ; Printer flag (b7)
HRSX40 := $49 HRSX40 := $49
HRSX6 := $4A HRSX6 := $4A
ADHRS := $4B ; Hires screen address (word) ADHRS := $4B ; Hires screen address (word)
HRS1 := $4D HRS1 := $4D
HRS2 := $4F HRS2 := $4F

View File

@ -20,11 +20,9 @@
; Read the timer ; Read the timer
sei ; Disable interrupts sei ; Disable interrupts
lda TIMEUD ; TIMED contains 1/10 of a second from clock. Telestrat main cardridge simulate a clock from VIA6522 timer lda TIMEUD ; TIMED contains 1/10 of a second from clock. Telestrat main cardridge simulate a clock from VIA6522 timer
ldx TIMEUD+1 ldx TIMEUD+1
cli ; Reenable interrupts cli ; Reenable interrupts
rts rts
.endproc .endproc