forked from jthlim/impulse-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IT_K.ASM
1812 lines (1394 loc) · 48.2 KB
/
IT_K.ASM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Keyboard Module ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Jumps
.386
include switch.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Externals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Extrn D_GotoStartingDirectory:Far
Extrn E_UnInitEMS:Far
Extrn S_GetDestination:Far
Extrn Music_Stop:Far
Extrn Music_KBPlaySong:Far
Extrn Music_IncreaseVolume:Far
Extrn Music_DecreaseVolume:Far
Extrn S_DrawString:Far
Extrn CrashRecovery:Far
Extrn IsStartupKeyList:Far
Extrn GetStartupKeyList:Far
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Globals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Global K_DrawTables:Far
Global K_InitKeyBoard:Far
Global K_UnInitKeyBoard:Far
Global K_IsKeyWaiting:Far
Global K_GetKey:Far
Global K_IsAnyKeyDown:Far
Global K_IsKeyDown:Far
Global K_ClearKeyBoardQueue:Far
Global K_ResetKeyboardTables:Far
Global K_SelectKBButton:Far
Global K_SetKeyboardType:Far
Global K_InstallDOSHandler:Far
Global K_UnInstallDOSHandler:Far
Global K_SwapKeyBoard:Far
Global K_InstallKeyboardType:Far
Global K_RemoveKeyboardType:Far
Global K_SetScrollLock:Far
Global CountryTable:Byte
Public MIDIBufferEmpty, MIDISend, K_ShowMIDIInput
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Segment KeyBoard BYTE Public 'Code' USE16
Assume CS:KeyBoard, DS:KeyBoard
CREATENEWLOGFILE EQU 0
include debug.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Variables ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
KeyBoardTable DB 256 Dup (?) ; Table of current keypresses
KeyBoardBuffer DB 256 Dup (?) ; Queue of keys.
LastKey DW 0 ; For Caps/Numlock processing
; only on FIRST press
KBStart DW 0 ; Buffer start ptr
KBEnd DW 0 ; Buffer end ptr
OldKBHandler Label DWord
OldKBHandlerOffset DW ? ; Old Interrupt handler offset
OldKBHandlerSegment DW ? ; Old interrupt handler segment
HighSet DB 0
Caps DB 0 ; Internal flag
NumLock DB 0 ; Internal flag
ScrollLock DB 0
KeyboardFile DB "KEYBOARD.CFG", 0
KeyboardFileLength DW 0
KeypadValueFlag DB 0
KeypadValue DB 0
MIDIStatusByte DB 0
MIDIDataByte1 DB 0
MIDIDataByte2 DB 0
MIDIDataInput DB 0
MIDIMessage DB "MIDI Input: ", 0FDh, "X ", 0FDh, "X ", 0FDh, "X ", 0
TranslationTable Label DWord
TranslationTableOffset DW Offset USKeyboardTable
TranslationTableSegment DW Keyboard
USKeyboardTable Label Byte
DB 2 ; 1
DB 0
DW '1'
DB 3 ; !
DW '!'
DB 0FFh
DB 3 ; 2
DB 0
DW '2'
DB 3 ; @
DW '@'
DB 0FFh
DB 4 ; 3
DB 0
DW '3'
DB 3 ; #
DW '#'
DB 0FFh
DB 5 ; 4
DB 0
DW '4'
DB 3 ; $
DW '$'
DB 0FFh
DB 6 ; 5
DB 0
DW '5'
DB 3 ; %
DW '%'
DB 0FFh
DB 7 ; 6
DB 0
DW '6'
DB 3 ; ^
DW '^'
DB 0FFh
DB 8 ; 7
DB 0
DW '7'
DB 3 ; &
DW '&'
DB 0FFh
DB 9 ; 8
DB 0
DW '8'
DB 3 ; *
DW '*'
DB 0FFh
DB 10 ; 9
DB 0
DW '9'
DB 3 ; (
DW '('
DB 0FFh
DB 11 ; 0
DB 0
DW '0'
DB 3 ; )
DW ')'
DB 0FFh
DB 12 ; -
DB 0
DW '-'
DB 3 ; _
DW '_'
DB 0FFh
DB 13 ; =
DB 0
DW '='
DB 3 ; +
DW '+'
DB 0FFh
DB 14 ; Backspace
DB 4 ; Ctrl-Backspace
DW 127
DB 0FFh
DB 15 ; Tab
DB 3 ; ShiftTab
DW 0F00h
DB 0FFh
DB 16 ; Q
DB 1
DW 'Q'
DB 2 ; q
DW 'q'
DB 4 ; Ctrl-Q
DW 11h
DB 5 ; Alt-Q
DW 1000h
DB 0FFh
DB 17 ; W
DB 1
DW 'W'
DB 2 ; w
DW 'w'
DB 4 ; Ctrl-W
DW 17h
DB 5 ; Alt-W
DW 1100h
DB 0FFh
DB 18 ; E
DB 1
DW 'E'
DB 2 ;e
DW 'e'
DB 4 ; Ctrl-E
DW 5
DB 5 ; Alt-E
DW 1200h
DB 0FFh
DB 19 ; R
DB 1
DW 'R'
DB 2 ; r
DW 'r'
DB 4 ; Ctrl-R
DW 12h
DB 5 ; Alt-R
DW 1300h
DB 0FFh
DB 20 ; T
DB 1
DW 'T'
DB 2 ; t
DW 't'
DB 4 ; Ctrl-T
DW 14h
DB 5 ; Alt-T
DW 1400h
DB 0FFh
DB 21 ; Y
DB 1
DW 'Y'
DB 2 ; y
DW 'y'
DB 4 ; Ctrl-Y
DW 19h
DB 5 ; Alt-Y
DW 1500h
DB 0FFh
DB 22 ; U
DB 1
DW 'U'
DB 2 ; u
DW 'u'
DB 4 ; Ctrl-U
DW 15h
DB 5 ; Alt-U
DW 1600h
DB 0FFh
DB 23 ; I
DB 1
DW 'I'
DB 2 ; i
DW 'i'
DB 4 ; Ctrl-I
DW 9
DB 5 ; Alt-I
DW 1700h
DB 0FFh
DB 24 ; O
DB 1
DW 'O'
DB 2 ; o
DW 'o'
DB 4 ; Ctrl-O
DW 0Fh
DB 5 ; Alt-O
DW 1800h
DB 0FFh
DB 25 ; P
DB 1
DW 'P'
DB 2 ; p
DW 'p'
DB 4 ; Ctrl-P
DW 10h
DB 5 ; Alt-P
DW 1900h
DB 0FFh
DB 26 ; [
DB 0
DW '['
DB 3 ; {
DW '{'
DB 0FFh
DB 27 ; ]
DB 0
DW ']'
DB 3 ; }
DW '}'
DB 0FFh
DB 30 ; A
DB 1
DW 'A'
DB 2 ; a
DW 'a'
DB 4 ; Ctrl-A
DW 1
DB 5 ; Alt-A
DW 1E00h
DB 0FFh
DB 31 ; S
DB 1
DW 'S'
DB 2 ; s
DW 's'
DB 4 ; Ctrl-S
DW 13h
DB 5 ; Alt-S
DW 1F00h
DB 0FFh
DB 32 ; D
DB 1
DW 'D'
DB 2 ; d
DW 'd'
DB 4 ; Ctrl-D
DW 4
DB 5 ; Alt-D
DW 2000h
DB 0FFh
DB 33 ; F
DB 1
DW 'F'
DB 2 ; f
DW 'f'
DB 4 ; Ctrl-F
DW 6
DB 5 ; Alt-F
DW 2100h
DB 0FFh
DB 34 ; G
DB 1
DW 'G'
DB 2 ; g
DW 'g'
DB 4 ; Ctrl-G
DW 7
DB 5 ; Alt-G
DW 2200h
DB 0FFh
DB 35 ; H
DB 1
DW 'H'
DB 2 ; h
DW 'h'
DB 4 ; Ctrl-H
DW 8
DB 5 ; Alt-H
DW 2300h
DB 0FFh
DB 36 ; J
DB 1
DW 'J'
DB 2 ; j
DW 'j'
DB 4 ; Ctrl-J
DW 0Ah
DB 5 ; Alt-J
DW 2400h
DB 0FFh
DB 37 ; K
DB 1
DW 'K'
DB 2 ; k
DW 'k'
DB 4 ; Ctrl-K
DW 0Bh
DB 5 ; Alt-K
DW 2500h
DB 0FFh
DB 38 ; L
DB 1
DW 'L'
DB 2 ; l
DW 'l'
DB 4 ; Ctrl-L
DW 0Ch
DB 5 ; Alt-L
DW 2600h
DB 0FFh
DB 39 ; ;
DB 0
DW ';'
DB 3 ; :
DW ':'
DB 0FFh
DB 40 ; '
DB 0
DW "'"
DB 3 ; "
DW '"'
DB 0FFh
DB 41 ; `
DB 0
DW '`'
DB 3 ; ~
DW '~'
DB 0FFh
DB 43 ; \
DB 0
DW '\'
DB 3 ; |
DW '|'
DB 0FFh
DB 44 ; z
DB 1
DW 'Z'
DB 2 ; z
DW 'z'
DB 4 ; Ctrl-Z
DW 1Ah
DB 5 ; Alt-Z
DW 2C00h
DB 0FFh
DB 45 ; X
DB 1
DW 'X'
DB 2 ; x
DW 'x'
DB 4 ; Ctrl-X
DW 1Ah
DB 5 ; Alt-X
DW 2D00h
DB 0FFh
DB 46 ; C
DB 1
DW 'C'
DB 2 ; c
DW 'c'
DB 4 ; Ctrl-C
DW 3
DB 5 ; Alt-C
DW 2E00h
DB 0FFh
DB 47 ; V
DB 1
DW 'V'
DB 2 ; v
DW 'v'
DB 4 ; Ctrl-V
DW 16h
DB 5 ; Alt-V
DW 2F00h
DB 0FFh
DB 48 ; B
DB 1
DW 'B'
DB 2 ; b
DW 'b'
DB 4 ; Ctrl-B
DW 2
DB 5 ; Alt-B
DW 3000h
DB 0FFh
DB 49 ; N
DB 1
DW 'N'
DB 2 ; n
DW 'n'
DB 4 ; Ctrl-N
DW 0Eh
DB 5 ; Alt-N
DW 3100h
DB 0FFh
DB 50 ; M
DB 1
DW 'M'
DB 2
DW 'm'
DB 4 ; Ctrl-M
DW 0Dh
DB 5 ; Alt-M
DW 3200h
DB 0FFh
DB 51 ; ,
DB 0
DW ','
DB 3
DW '<'
DB 0FFh
DB 52 ; .
DB 0
DW '.'
DB 3
DW '>'
DB 0FFh
DB 53 ; /
DB 0
DW '/'
DB 3
DW '?'
DB 0FFh
DB 55 ; XT/AT printscreen, Enhanced keyboard *
DB 0
DW '*'
DB 0FFh
DB 57 ; Spacebar
DB 0
DW ' '
DB 3
DW ' '
DB 0FFh
DB 71 ; Keypad 7
DB 8
DW '7'
DB 10
DW 7
DB 0FFh
DB 72 ; Keypad 8
DB 8
DW '8'
DB 10
DW 8
DB 0FFh
DB 73 ; Keypad 9
DB 8
DW '9'
DB 10
DW 9
DB 0FFh
DB 74 ; Grey -
DB 0
DW '-'
DB 0FFh
DB 75 ; Keypad 4
DB 8
DW '4'
DB 10
DW 4
DB 0FFh
DB 76 ; Keypad 5
DB 8
DW '5'
DB 10
DW 5
DB 0FFh
DB 77 ; Keypad 6
DB 8
DW '6'
DB 10
DW 6
DB 0FFh
DB 78 ; Grey +
DB 0
DW '+'
DB 0FFh
DB 79 ; Keypad 1
DB 8
DW '1'
DB 10
DW 1
DB 0FFh
DB 80 ; Keypad 2
DB 8
DW '2'
DB 10
DW 2
DB 0FFh
DB 81 ; Keypad 3
DB 8
DW '3'
DB 10
DW 3
DB 0FFh
DB 82 ; Keypad 0
DB 8
DW '0'
DB 10
DW 0
DB 0FFh
DB 83
DB 8
DW '.'
DB 0FFh
DB 128+35h ; Grey /
DB 0
DW '/'
DB 0FFh
DB 0FFh
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Functions ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Alt DB 0
Ctrl DB 0
Proc K_KBHandler
Push AX
Push BX
Push DS
Push CS
Pop DS
In AL, 60h ; Get input from port
Cmp AL, 0FAh
JE K_KBHandler3 ; Is it a LED response?, 2 prev.
Mov BX, KBEnd ; No... add a key to the queue
Inc BX
And BX, 0FFh
Cmp BX, KBStart
JE K_KBHandler1
Mov [KeyBoardBuffer+BX], AL
Mov KBEnd, BX
K_KBHandler1:
Cmp AL, 1Dh ; Left Ctrl, Right Ctrl
JE K_KBHandlerCtrlPressed
Cmp AL, 9Dh
JE K_KBHandlerCtrlReleased
Cmp AL, 38h ; Left Alt, Right Alt
JE K_KBHandlerAltPressed
Cmp AL, 0B8h
JE K_KBHandlerAltReleased
Cmp AL, 42h ; F8
JNE K_KBHandlerDel
Cmp Word Ptr [Alt], 0
JNE K_KBHandler3
Call Music_Stop
Jmp K_KBHandler3
K_KBHandlerCtrlPressed:
Mov Ctrl, 1
Jmp K_KBHandler3
K_KBHandlerCtrlReleased:
Mov Ctrl, 0
Jmp K_KBHandler3
K_KBHandlerAltPressed:
Mov Alt, 1
Jmp K_KBHandler3
K_KBHandlerAltReleased:
Mov Alt, 0
Jmp K_KBHandler3
K_KBHandlerDel:
CRASHRECOVERYKEY EQU $+1
Cmp AL, 53h ; Delete, 52h = insert
JNE K_KBHandler3
Cmp Word Ptr [Alt], 101h
JNE K_KBHandler3
; Crash recovery
Push BP
Mov BP, SP
DB 66h, 0C7h, 46h, 08h ; Mov DWord Ptr [BP+8], CrashRecovery
DD DWord Ptr CrashRecovery ;
Pop BP
K_KBHandler3:
In AL, 61h ; KB Acknowledgement.
Mov AH, AL ; (Only for old 8042 chips.)
Or AL, 80h
Out 61h, AL
Mov AL, AH
Out 61h, AL
K_KBHandler2:
Mov AL, 20h ; IRQ Acknowledgement.
Out 20h, AL
Pop DS
Pop BX
Pop AX
IRet
EndP K_KBHandler
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc K_DOSKBHandler Far
Push AX
In AL, 60h
Cmp AL, 4Eh ; Grey plus
JE K_DOSKBHandler5
Cmp AL, 4Ah ; Grey Minus
JE K_DOSKBHandler6
Cmp AL, 0E0h
JNE K_DOSKBHandler3
Mov CS:HighSet, 1
Jmp K_DOSKBHandler4
K_DOSKBHandler3:
Cmp CS:HighSet, 0
JE K_DOSKBHandler4
Mov CS:HighSet, 0
Cmp AL, 1Dh ; Right Ctrl.
JNE K_DOSKBHandler1
PushF
Call DWord Ptr [CS:OldKBHandler]
Call Music_KBPlaySong
Pop AX
IRet
K_DOSKBHandler1:
Cmp AL, 38h ; Right Alt.
JNE K_DOSKBHandler4
PushF
Call DWord Ptr [CS:OldKBHandler]
Call Music_Stop
Pop AX
IRet
K_DOSKBHandler4:
Pop AX
Jmp DWord Ptr [CS:OldKBHandler]
K_DOSKBHandler5: ; Grey Plus
Mov AL, 20h
Out 20h, AL
Call Music_IncreaseVolume
Pop AX
IRet
K_DOSKBHandler6:
Mov AL, 20h
Out 20h, AL
Call Music_DecreaseVolume ; Grey minus
Pop AX
IRet
EndP K_DOSKBHandler
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc K_SetKeyBoardLights ; Reqs: DS:KeyBoard
; Sets keyboard lights (duh!)
Push AX
Mov AL, 0EDh
Out 60h, AL
Xor AL, AL
Cmp Caps, 0
JE K_SetKeyBoardLights1
Mov AL, 4
K_SetKeyBoardLights1:
Cmp NumLock, 0
JE K_SetKeyBoardLights2
Or AL, 2
K_SetKeyBoardLights2:
Cmp ScrollLock, 0
JE K_SetKeyboardLights3
Or AL, 1
K_SetKeyBoardLights3:
Out 60h, AL
Pop AX
Ret
EndP K_SetKeyBoardLights
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc K_InitKeyBoard Far ; Raises key repeat rate
; to 30 char/s,
; delay before second char=0.25s
; Gets old IRQ handler
; and CAPS/NumLock states
; Checks for Keyboard chip
; Installs new IRQ handler
Push AX
Push DS
Push ES
Push CS
Pop DS
Trace " - Detecting Windows presence"
Mov AX, 1600h ; Windows detection.
Int 2Fh
Test AL, 7Fh
JZ NoWindows
Mov Byte Ptr [CRASHRECOVERYKEY], 52h
NoWindows:
Trace " - Setting keyboard repeat rate"
Mov AX, 305h ; Set repeat rate
Xor BX, BX
Int 16h
Trace " - Installing keyboard handler"
ClI
In AL, 21h
Or AL, 00000010b ; Disable keyboard IRQ
Out 21h, AL
Xor AX, AX
Mov ES, AX
Mov EAX, [ES:36]
Mov OldKBHandler, EAX
K_InitKeyBoard3: ; Chained to from K_UnInstallDOSHandler
Mov AL, [ES:417h] ; Keyboard status byte.
Mov AH, AL
And AL, 40h
Mov Caps, AL
And AH, 20h
Mov NumLock, AH
; New keyboard IRQ handler
Mov AX, CS
ShL EAX, 16
Mov AX, Offset K_KBHandler
Mov Word Ptr [ES:5], 0 ; Screw Int1
Mov [ES:36], EAX
In AL, 21h
And AL, 11111101b
Out 21h, AL
StI
Trace " - Initialising keyboard tables"
Call K_ResetKeyboardTables ; Initialise keyboard tables.
Trace " - Initialising keyboard lights"
Call K_SetKeyboardLights
Pop ES
Pop DS
Pop AX
Ret
EndP K_InitKeyBoard
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc K_UnInitKeyBoard Far
Push AX
Push DS
Push ES
Push CS
Pop DS
ClI
In AL, 21h
Or AL, 00000010b
Out 21h, AL
Xor AX, AX
Mov ES, AX
Mov EAX, OldKBHandler
Mov [ES:36], EAX
K_UnInitKeyBoard3: ; Chain to from InstallDOSHandler
In AL, 21h
And AL, 11111101b
Out 21h, AL
StI
Mov AL, [ES:417h]
And AL, 10010000b
Cmp CS:Caps, 0
JE K_UnInitKeyBoard2
Or AL, 40h ; Set caps lock flag
K_UnInitKeyBoard2:
Cmp CS:NumLock, 0
JZ K_UnInitKeyBoard1
Or AL, 20h
K_UnInitKeyBoard1:
Mov [ES:417h], AL
Pop ES
Pop DS
Pop AX
Ret
EndP K_UnInitKeyBoard
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc K_InstallDOSHandler Far
Push AX
Push DS
Push ES
Push CS