mirror of
https://github.com/cc65/cc65.git
synced 2025-01-15 22:30:04 +00:00
fixed some stuff, compiles again :)
This commit is contained in:
parent
85760e0c53
commit
a42feca228
@ -38,6 +38,10 @@ INIT_STATUS := $A04 ; Flags: Reset/Restore initiation status
|
|||||||
FKEY_LEN := $1000 ; Function key lengths
|
FKEY_LEN := $1000 ; Function key lengths
|
||||||
FKEY_TEXT := $100A ; Function key texts
|
FKEY_TEXT := $100A ; Function key texts
|
||||||
|
|
||||||
|
KBDREPEAT := $28a
|
||||||
|
KBDREPEATRATE := $28b
|
||||||
|
KBDREPEATDELAY := $28c
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; Kernal routines
|
; Kernal routines
|
||||||
|
|
||||||
|
@ -33,6 +33,9 @@ CHARCOLOR := $286
|
|||||||
CURS_COLOR := $287 ; Color under the cursor
|
CURS_COLOR := $287 ; Color under the cursor
|
||||||
PALFLAG := $2A6 ; $01 = PAL, $00 = NTSC
|
PALFLAG := $2A6 ; $01 = PAL, $00 = NTSC
|
||||||
|
|
||||||
|
KBDREPEAT := $28a
|
||||||
|
KBDREPEATRATE := $28b
|
||||||
|
KBDREPEATDELAY := $28c
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; Kernal routines
|
; Kernal routines
|
||||||
|
@ -31,6 +31,11 @@ BASIC_BUF_LEN = 81 ; Maximum length of command-line
|
|||||||
|
|
||||||
KEY_BUF := $26F ; Keyboard buffer
|
KEY_BUF := $26F ; Keyboard buffer
|
||||||
|
|
||||||
|
;FIXME: these are wrong?
|
||||||
|
KBDREPEAT := $28a
|
||||||
|
KBDREPEATRATE := $28b
|
||||||
|
KBDREPEATDELAY := $28c
|
||||||
|
|
||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
; PET ROM type detection
|
; PET ROM type detection
|
||||||
|
|
||||||
|
@ -33,6 +33,11 @@ FKEY_COUNT := $55D ; Characters for function key
|
|||||||
FKEY_SPACE := $55F ; Function key definitions
|
FKEY_SPACE := $55F ; Function key definitions
|
||||||
FKEY_ORIG := $F3D2 ; Original definitions
|
FKEY_ORIG := $F3D2 ; Original definitions
|
||||||
|
|
||||||
|
;FIXME: he?! these ok? :o)
|
||||||
|
KBDREPEAT := $28a
|
||||||
|
KBDREPEATRATE := $28b
|
||||||
|
KBDREPEATDELAY := $28c
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; Kernal routines
|
; Kernal routines
|
||||||
|
|
||||||
|
@ -31,6 +31,9 @@ BASIC_BUF_LEN = 89 ; Maximum length of command-line
|
|||||||
CHARCOLOR := $286
|
CHARCOLOR := $286
|
||||||
CURS_COLOR := $287 ; Color under the cursor
|
CURS_COLOR := $287 ; Color under the cursor
|
||||||
|
|
||||||
|
KBDREPEAT := $28a
|
||||||
|
KBDREPEATRATE := $28b
|
||||||
|
KBDREPEATDELAY := $28c
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; Screen size
|
; Screen size
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
||||||
|
|
||||||
.include "c128/c128.inc"
|
.include "c128.inc"
|
||||||
|
|
||||||
_kbrepeat:
|
_kbrepeat:
|
||||||
ldx KBDREPEAT ; get old value
|
ldx KBDREPEAT ; get old value
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
||||||
|
|
||||||
.include "c64/c64.inc"
|
.include "c64.inc"
|
||||||
|
|
||||||
_kbrepeat:
|
_kbrepeat:
|
||||||
ldx KBDREPEAT ; get old value
|
ldx KBDREPEAT ; get old value
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
||||||
|
|
||||||
.include "pet/pet.inc"
|
.include "pet.inc"
|
||||||
|
|
||||||
_kbrepeat:
|
_kbrepeat:
|
||||||
ldx KBDREPEAT ; get old value
|
ldx KBDREPEAT ; get old value
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
||||||
|
|
||||||
.include "plus4/plus4.inc"
|
.include "plus4.inc"
|
||||||
|
|
||||||
_kbrepeat:
|
_kbrepeat:
|
||||||
ldx KBDREPEAT ; get old value
|
ldx KBDREPEAT ; get old value
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
|
||||||
|
|
||||||
.include "vic20/vic20.inc"
|
.include "vic20.inc"
|
||||||
|
|
||||||
_kbrepeat:
|
_kbrepeat:
|
||||||
ldx KBDREPEAT ; get old value
|
ldx KBDREPEAT ; get old value
|
||||||
|
Loading…
x
Reference in New Issue
Block a user