home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / utilities / system / dmouse / tag.asm < prev    next >
Encoding:
Assembly Source File  |  1994-07-01  |  301 b   |  19 lines

  1.  
  2.         ;    A0 = pointer to event linked list
  3.         ;    A1 = pointer to my data segment
  4.         ;    return new event linked list in D0
  5.  
  6.         section text,code
  7.  
  8.         xref    _CHandler
  9.         xdef    _handler
  10.  
  11. _handler:
  12.         movem.l A0/A1,-(sp)
  13.         jsr     _CHandler(pc)
  14.         movem.l (sp)+,A0/A1
  15.         rts
  16.  
  17.         END
  18.  
  19.