Skip to content

Commit fff8e21

Browse files
committed
Treat the yellow key like a control key.
1 parent c55de46 commit fff8e21

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

arch/nc200/supervisor/keyboard.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ process_keyboard_event:
2727
and 0x7f
2828
cp 0x09 ; control key
2929
jr z, ctrl_change
30+
cp 0x08 ; yellow key
31+
jr z, ctrl_change
3032
and 0x7e
3133
jr z, shift_change
3234

arch/nc200/supervisor/pcmcia.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,3 +332,6 @@ str.ide_error: db "IDE error: ", 0
332332
str.ata_card: db "PCMCIA card found: ", 0
333333
str.not_ata: db "Card is not ATA", 13, 10, 0
334334
str.no_card: db "No PCMCIA card found", 13, 10, 0
335+
336+
; vim: sw=4 ts=4 expandtab ft=asm
337+

arch/nc200/supervisor/startup.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,5 @@ str.loading:
121121
str.ready:
122122
db "Ready", 10, 13, 0
123123

124+
; vim: sw=4 ts=4 expandtab ft=asm
125+

0 commit comments

Comments
 (0)