home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 500-599 / ff535.lzh / SetBatt / Format.asm next >
Assembly Source File  |  1991-08-26  |  652b  |  43 lines

  1. ** DoRevision Header ** Header built automatically - do not edit! **********
  2. *
  3. *    (C) Copyright 1991 by Olaf Barthel
  4. *
  5. *    Name .....:    Format.asm
  6. *    Created ..:    Wednesday 24-Jul-91 14:21
  7. *    Revision .:    1
  8. *
  9. *    Date        Author        Comment
  10. *    =========    ========    ====================
  11. *    24-Jul-91    Olsen        Created this file!
  12. *
  13. ***************************************************************************/
  14.  
  15. CALL    macro
  16.     xref    _LVO\1
  17.     jsr    _LVO\1(a6)
  18.     endm
  19.  
  20.     csect    text,0,0,1,2
  21.  
  22.     xdef    _Printf
  23.  
  24. _Printf:
  25.     movem.l    d2/a6,-(sp)
  26.  
  27.     move.l    12(sp),d1
  28.     lea    16(sp),a0
  29.     move.l    a0,d2
  30.  
  31.     move.l    _DOSBase(a4),a6
  32.  
  33.     CALL    VPrintf
  34.  
  35.     movem.l    (sp)+,d2/a6
  36.     rts
  37.  
  38.     csect    __MERGED
  39.  
  40.     xref    _DOSBase
  41.  
  42.     end
  43.