mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 04:12:34 +03:00
15 lines
459 B
PHP
15 lines
459 B
PHP
|
;----------------------------------------------------------
|
||
|
;---------------------system events------------------------
|
||
|
;----------------------------------------------------------
|
||
|
event:
|
||
|
mov eax,10
|
||
|
int 0x40
|
||
|
ret
|
||
|
;---------------------------------------------------------
|
||
|
;---------------SOUND of EVENTS---------------------------
|
||
|
;---------------------------------------------------------
|
||
|
sound:
|
||
|
mov eax,55
|
||
|
mov ebx,eax
|
||
|
int 0x40
|
||
|
ret
|