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

fixed some stuff, compiles again :)

This commit is contained in:
mrdudz 2017-06-17 02:37:34 +02:00
parent 85760e0c53
commit a42feca228
10 changed files with 25 additions and 5 deletions

View File

@ -38,6 +38,10 @@ INIT_STATUS := $A04 ; Flags: Reset/Restore initiation status
FKEY_LEN := $1000 ; Function key lengths
FKEY_TEXT := $100A ; Function key texts
KBDREPEAT := $28a
KBDREPEATRATE := $28b
KBDREPEATDELAY := $28c
; ---------------------------------------------------------------------------
; Kernal routines

View File

@ -33,6 +33,9 @@ CHARCOLOR := $286
CURS_COLOR := $287 ; Color under the cursor
PALFLAG := $2A6 ; $01 = PAL, $00 = NTSC
KBDREPEAT := $28a
KBDREPEATRATE := $28b
KBDREPEATDELAY := $28c
; ---------------------------------------------------------------------------
; Kernal routines

View File

@ -31,6 +31,11 @@ BASIC_BUF_LEN = 81 ; Maximum length of command-line
KEY_BUF := $26F ; Keyboard buffer
;FIXME: these are wrong?
KBDREPEAT := $28a
KBDREPEATRATE := $28b
KBDREPEATDELAY := $28c
;----------------------------------------------------------------------------
; PET ROM type detection

View File

@ -33,6 +33,11 @@ FKEY_COUNT := $55D ; Characters for function key
FKEY_SPACE := $55F ; Function key definitions
FKEY_ORIG := $F3D2 ; Original definitions
;FIXME: he?! these ok? :o)
KBDREPEAT := $28a
KBDREPEATRATE := $28b
KBDREPEATDELAY := $28c
; ---------------------------------------------------------------------------
; Kernal routines

View File

@ -31,6 +31,9 @@ BASIC_BUF_LEN = 89 ; Maximum length of command-line
CHARCOLOR := $286
CURS_COLOR := $287 ; Color under the cursor
KBDREPEAT := $28a
KBDREPEATRATE := $28b
KBDREPEATDELAY := $28c
; ---------------------------------------------------------------------------
; Screen size

View File

@ -1,7 +1,7 @@
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
.include "c128/c128.inc"
.include "c128.inc"
_kbrepeat:
ldx KBDREPEAT ; get old value

View File

@ -1,7 +1,7 @@
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
.include "c64/c64.inc"
.include "c64.inc"
_kbrepeat:
ldx KBDREPEAT ; get old value

View File

@ -1,7 +1,7 @@
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
.include "pet/pet.inc"
.include "pet.inc"
_kbrepeat:
ldx KBDREPEAT ; get old value

View File

@ -1,7 +1,7 @@
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
.include "plus4/plus4.inc"
.include "plus4.inc"
_kbrepeat:
ldx KBDREPEAT ; get old value

View File

@ -1,7 +1,7 @@
.export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
.include "vic20/vic20.inc"
.include "vic20.inc"
_kbrepeat:
ldx KBDREPEAT ; get old value