Sfoglia il codice sorgente

kbd: add keypad codes to keycode table

pull/10/head
Virgil Dupras 4 anni fa
parent
commit
22f9b4f07e
1 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. +4
    -4
      kernel/kbd.asm

+ 4
- 4
kernel/kbd.asm Vedi File

@@ -122,9 +122,9 @@ kbdScanCodes:
; 0x50 13 = RETURN 39 = '
.db 0, 0, 39, 0,'[','=', 0, 0, 0, 0, 13,']', 0,'\', 0, 0
; 0x60 8 = BKSP
.db 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0
.db 0, 0, 0, 0, 0, 0, 8, 0, 0,'1', 0,'4','7', 0, 0, 0
; 0x70 27 = ESC
.db 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0
.db '0','.','2','5','6','8', 27, 0, 0, 0,'3', 0, 0,'9', 0, 0

; Same values, but shifted
kbdScanCodesS:
@@ -138,8 +138,8 @@ kbdScanCodesS:
.db 0,'N','B','H','G','Y','^', 0, 0, 0,'M','J','U','&','*', 0
; 0x40 59 = ;
.db 0,'<','K','I','O',')','(', 0, 0,'>','?','L',':','P','_', 0
; 0x50 13 = RETURN 39 = '
.db 0, 0, 39, 0,'{','+', 0, 0, 0, 0, 13,'}', 0,'|', 0, 0
; 0x50 13 = RETURN
.db 0, 0,'"', 0,'{','+', 0, 0, 0, 0, 13,'}', 0,'|', 0, 0
; 0x60 8 = BKSP
.db 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0
; 0x70 27 = ESC


Loading…
Annulla
Salva