home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / handler.lzh / HANDLER / ADDDOSNODE.ASM next >
Assembly Source File  |  1991-11-01  |  602b  |  30 lines

  1. * AddDosNode.asm 
  2. *
  3. * Interface code for AddDosNode() ... 
  4. * 19-SEP-86 - Phillip Lindsay - (C) Commodore 1986 
  5. *  You may freely distribute this source and use it for Amiga Development -
  6. *  as long as the Copyright notice is left intact.
  7. *
  8. * This is for AZTEC people who don't have a library that supports new functions
  9. *
  10.  
  11. _LVOAddDosNode    EQU    -150
  12.  
  13.     XREF    _ExpansionBase
  14.  
  15.         XDEF    _AddDosNode     
  16.        
  17.  
  18. _AddDosNode:
  19.  
  20.     move.l     a6,-(sp)
  21.         move.l  _ExpansionBase,a6
  22.         movem.l 8(sp),d0-d1/a0
  23.         jsr    _LVOAddDosNode(a6)    
  24.         move.l (sp)+,a6
  25.         rts
  26.         
  27.         END
  28.  
  29. * EOF
  30.