Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
339 hidnplayr 1
 
2
   mov	ebx, mask
3
   mov	eax, 40
4
   int	0x40
5
}
6
7
 
8
   mov	eax, 10
9
   int	0x40
10
}
11
12
 
13
   mov	eax, 11
14
   int	0x40
15
}
16
17
 
18
   mov	ebx,timeout
19
   mov	eax, 23
20
   int	0x40
21
}
22
23
 
24
 
25
event_keyboard	 equ 1 shl 1
26
event_button	 equ 1 shl 2
27
event_background equ 1 shl 4
28
event_mouse	 equ 1 shl 5
29
event_ipc	 equ 1 shl 6
30
event_network	 equ 1 shl 7
31
event_debug	 equ 1 shl 8
32
event_irq0	 equ 1 shl 15
33
event_irq1	 equ 1 shl 16
34
event_irq2	 equ 1 shl 17
35
event_irq3	 equ 1 shl 18
36
event_irq4	 equ 1 shl 19
37
event_irq5	 equ 1 shl 20
38
event_irq6	 equ 1 shl 21
39
event_irq7	 equ 1 shl 22
40
event_irq8	 equ 1 shl 23
41
event_irq9	 equ 1 shl 24
42
event_irq10	 equ 1 shl 25
43
event_irq11	 equ 1 shl 26
44
event_irq12	 equ 1 shl 27
45
event_irq13	 equ 1 shl 28
46
event_irq14	 equ 1 shl 29
47
event_irq15	 equ 1 shl 30
48