home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 15 / MA_Cover_15.iso / source / winquake / amiga_timer.s < prev    next >
Encoding:
Text File  |  2000-02-17  |  356 b   |  23 lines

  1.         .section    ".text"
  2.         .globl    ppctimer
  3.         .type    ppctimer,@function
  4.         .globl    _ppctimer
  5.         .type    _ppctimer,@function
  6.  
  7. # return the timebase registers in the structure passed in
  8.  
  9.         .align    4
  10.  
  11. ppctimer:
  12. _ppctimer:    mftbu    r4
  13.         mftbl    r5
  14.         mftbu    r6
  15.         cmpw    r4,r6
  16.         bne-    ppctimer
  17.  
  18.         stw    r4,0(r3)
  19.         stw    r5,4(r3)
  20.         blr
  21. .ppctimer_end:
  22.     .size    ppctimer,.ppctimer_end-ppctimer
  23.