Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Scan the keyboard
2006-07-25 15:03
stunt
Account closed

Registered: Jul 2006
Posts: 48
Scan the keyboard

Guys,

Right now i'm still using kernal routine $ffe4 to scan the keyboard, but ofcourse I'd rather avoid using kernal routines. So Scout suggested me inastead to scan the keyboard matrix ($dc00 and $dc01) directly.

Now i have:
keyscanloop
      lda $dc00 ; row
      and #%00100000
      bne continu
      lda $dc01 ; collumn
      and #%00000001
      bne continu
      jmp keyispressed
continu 
      jmp keyscanloop
keyispressed 
      ...


But this doesnt seem to be working.
What am i doin wrong?

Stunt
2006-07-25 15:49
Soren

Registered: Dec 2001
Posts: 547
you store a value in one of the adresses
and read from the other and do a compare.

To put it short :)

2006-07-25 15:50
Soren

Registered: Dec 2001
Posts: 547
example

lda #$xx
sta $dc00

lda $dc01
cmp #$yy

more or less..

2006-07-25 16:13
stunt
Account closed

Registered: Jul 2006
Posts: 48
ok, thanks jeff,
now i tried:

scankey
     lda #%00010000 ; row for character '0'
     sta $dc00

     lda $dc01
     cmp #%00001000 '; collumn for character '0'

     bne scankey

     lda #07
     sta 53280


So I want to change border colour to yellow when key '0' is pressed. But still it doenst work.

(For the values i used the matrix on http://sta.c64.org/cbm64kbdlay.html (very handy link that scout gave me).Did i pick the right values for key '0'?)

Stunt

2006-07-25 16:19
enthusi

Registered: May 2004
Posts: 675
no, you either mixed row/column or got the bit-order wrong
bit 0 = #%00000001
2006-07-25 16:30
Soren

Registered: Dec 2001
Posts: 547
the bits of the key(s) to check for has to be off.

so to check for 0 (zero)
do this:

loop lda #%11101111
sta $dc00
lda $dc01
cmp #%11110111
bne loop
rts
2006-07-25 16:33
stunt
Account closed

Registered: Jul 2006
Posts: 48
yes it's working now!!!!!!
thx!
O and another 1 question, what if i want to scan for 2 keys pressed at same time, for example scan for 'f8', which is f7+shift?

thx

Stunt
2006-07-25 16:40
Soren

Registered: Dec 2001
Posts: 547
That gets a bit tricky, as there is both left shift and right shift/shiftlock.
But there is a neat adress, $028d which can be used to check for shift/CTRL/Commodore
when it has value 01, a shift key is pressed, 02 -> commodore key is pressed. 04 -> ctrl is pressed.
And you can combine those values.
so possible you could first check for f7 by using dc00 and dc01, and then check if shift is pressed by using address $028d.

2006-07-25 16:52
stunt
Account closed

Registered: Jul 2006
Posts: 48
@ jeff: u rock. f8 is now working also :))
2006-07-25 16:54
enthusi

Registered: May 2004
Posts: 675
well 028d aint very helpful when you code the KB-scan to get rid of the kernal. sorry for being all negative and of little use.
2006-07-25 17:05
stunt
Account closed

Registered: Jul 2006
Posts: 48
@ enthusi:

Please explain.

And please also tell me what is your solution then to read shift+key?

Stunt

 
... 6 posts hidden. Click here to view all posts....
 
Previous - 1 | 2 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
DeMOSic/HF^MS^BCC^LSD
Honesty/Covenant/Ons..
Guests online: 70
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Dawnfall V1.1  (9.5)
8 Quadrants  (9.5)
9 Daah, Those Acid Pil..  (9.5)
10 Birth of a Flower  (9.5)
Top Groups
1 Nostalgia  (9.3)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Webmasters
1 Slaygon  (9.7)
2 Perff  (9.6)
3 Morpheus  (9.5)
4 Sabbi  (9.5)
5 CreaMD  (9.1)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.042 sec.