https://github.com/akkartik/mu/blob/main/baremetal/102keyboard.subx
1
2
3 read-key:
4
5 55/push-ebp
6 89/<- %ebp 4/r32/esp
7
8 51/push-ecx
9
10 b8/copy-to-eax 0/imm32
11
12 8b/-> *(ebp+8) 1/r32/ecx
13 81 7/subop/compare %ecx 0/imm32
14 {
15 75/jump-if-!= break/disp8
16
17 8b/-> *0x7dcc 1/r32/CL
18
19 8a/byte-> *(ecx+0x7dd0) 0/r32/AL
20
21 81 7/subop/compare %eax 0/imm32
22 {
23 74/jump-if-= break/disp8
24
25
26 fa/disable-interrupts
27 c6 0/subop/copy-byte *(ecx+0x7dd0) 0/imm8
28 ff 0/subop/increment *0x7dcc
29 81 4/subop/and *0x7dcc 0xf/imm32
30 fb/enable-interrupts
31 }
32
33 eb $read-key:end/disp8
34 }
35
36 $read-key:end:
37
38 59/pop-to-ecx
39
40 89/<- %esp 5/r32/ebp
41 5d/pop-to-ebp
42 c3/return