]> git.sur5r.net Git - cc65/commitdiff
fixed some stuff, compiles again :)
authormrdudz <mrdudz@users.noreply.github.com>
Sat, 17 Jun 2017 00:37:34 +0000 (02:37 +0200)
committermrdudz <mrdudz@users.noreply.github.com>
Sat, 17 Jun 2017 00:37:34 +0000 (02:37 +0200)
asminc/c128.inc
asminc/c64.inc
asminc/pet.inc
asminc/plus4.inc
asminc/vic20.inc
libsrc/c128/kbrepeat.s
libsrc/c64/kbrepeat.s
libsrc/pet/kbrepeat.s
libsrc/plus4/kbrepeat.s
libsrc/vic20/kbrepeat.s

index e6c89b07b021939896ad8d7e76657f77838f8fd8..9e9acc5a85a0d031cf0ce89f6d96035ea250812e 100644 (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
 
index ababb1ea0cdc2f933535237aa79aa39747811e57..00b66a64f49639e5166840296106264eef637958 100644 (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
index a745a89c8b1693a4b1a065c4790f710627c457d1..ea6eef2e0a22f856241eec76a6d27691249e4ef3 100644 (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
 
index 69b2298a37977467d55584eafd418a15cb7455df..42ed314bdce68aa00253205c522abfff5759a900 100644 (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
 
index 12424dc116626bc2267db0a812463430b068a927..d882eb1ad3a61b43fbf4adf2630794a9da6433a1 100644 (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
index f515e4ca36e29764125b1021ee09fae3e3d3685f..c32e8c0175b9dc6f2cea11ffd1c59ede15fb1c39 100644 (file)
@@ -1,7 +1,7 @@
 
         .export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
 
-        .include        "c128/c128.inc"
+        .include        "c128.inc"
 
 _kbrepeat:
         ldx KBDREPEAT           ; get old value
index b6c33250b230c8305b782ae6612998f38a48b979..f59c8a6daba0e2da990c4e3ee7387ac82f700754 100644 (file)
@@ -1,7 +1,7 @@
 
         .export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
 
-        .include        "c64/c64.inc"
+        .include        "c64.inc"
 
 _kbrepeat:
         ldx KBDREPEAT           ; get old value
index 44d60575f34e10ede524d20079385e81af7bbfa8..0a29d742044d1d160901cbb4cb8998de02d05d2e 100644 (file)
@@ -1,7 +1,7 @@
 
         .export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
 
-        .include        "pet/pet.inc"
+        .include        "pet.inc"
 
 _kbrepeat:
         ldx KBDREPEAT           ; get old value
index 8636d0e33fb083637f063962f57dbc5d2b936952..927b99e5b3d60e3f272a37f21f2f67bedbd161e2 100644 (file)
@@ -1,7 +1,7 @@
 
         .export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
 
-        .include        "plus4/plus4.inc"
+        .include        "plus4.inc"
 
 _kbrepeat:
         ldx KBDREPEAT           ; get old value
index 5a4ad96f67203efc1153831110146e19f8b8114c..5115c852e0a3acabe6e126cf6052d1421026ec17 100644 (file)
@@ -1,7 +1,7 @@
 
         .export _kbrepeat, _kbrepeatdelay, _kbrepeatrate
 
-        .include        "vic20/vic20.inc"
+        .include        "vic20.inc"
 
 _kbrepeat:
         ldx KBDREPEAT           ; get old value