home *** CD-ROM | disk | FTP | other *** search
- ; This function is taken from the exec/RawDoFmt() autodoc
- ;
- ; Simple version of the ANSI-C "vsprintf" function.
-
- XDEF _SPrintF
-
- _SPrintF:
- move.l a2,-(sp)
- lea.l stuffChar(pc),a2
-
- move.l 4.w,a6 ;Get SysBase
- jsr -$20a(a6) ;RawDoFmt()
-
- move.l (sp)+,a2
- rts
-
- ;------ PutChProc function used by RawDoFmt -----------
- stuffChar:
- move.b d0,(a3)+ ;Put data to output string
- rts
-
- END
-
-