forked from KolibriOS/kolibrios
17 lines
255 B
PHP
17 lines
255 B
PHP
|
macro wait time {
|
||
|
mov ebx,time
|
||
|
mov eax,5
|
||
|
int 0x40
|
||
|
}
|
||
|
|
||
|
macro get_time_counter result {
|
||
|
mov eax,26
|
||
|
mov ebx,9
|
||
|
int 0x40
|
||
|
mov result,eax
|
||
|
}
|
||
|
|
||
|
macro exit {
|
||
|
mov eax,-1
|
||
|
int 0x40
|
||
|
}
|