Subversion Repositories Kolibri OS

Rev

Rev 339 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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