forked from KolibriOS/kolibrios
5b0eb8ab98
git-svn-id: svn://kolibrios.org@339 a494cfbc-eb01-0410-851d-a64ba20cac60
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
|
|
} |