Subversion Repositories Kolibri OS

Rev

Rev 339 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
339 hidnplayr 1
macro wait time {
2
    mov     ebx,time
3
    mov     eax,5
485 heavyiron 4
    mcall
339 hidnplayr 5
}
6
 
7
macro get_time_counter result {
8
    mov     eax,26
9
    mov     ebx,9
485 heavyiron 10
    mcall
339 hidnplayr 11
    mov     result,eax
12
}
13
 
14
macro exit {
485 heavyiron 15
    or     eax,-1
16
    mcall
339 hidnplayr 17
}