home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / internal / m68k / m68k-native / special.s < prev    next >
Encoding:
Text File  |  1996-07-16  |  238 b   |  16 lines

  1.     .globl    _trapvec
  2. _trapvec:
  3.     cmpl    #8,sp@
  4.     jeq    pv
  5.     movel    _storedtrap,sp@-
  6.     rts
  7. pv:    addqw    #4,sp
  8.     jra    _TrapLevel8
  9.  
  10.     | The only trap I catch is privilege violation
  11.     .globl    _TrapHandler
  12. _TrapHandler:
  13.     movel    #8,sp@-
  14.     movel    _storedtrap,sp@-
  15.     rts
  16.