home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 1 / amigaformatcd01.iso / demos / secal / inc / libcalls / translator.inc < prev    next >
Encoding:
Text File  |  1996-04-30  |  243 b   |  8 lines

  1. pattern Translate(_inputString,_inputLength,_outputBuffer,_bufferSize) is
  2.     push a6;
  3.     safe a0:=_inputString; d0.l:=_inputLength; a1:=_outputBuffer; d1.l:=_bufferSize;;
  4.     a6:=TranslatorBase; jsr [a6-30];
  5.     pop a6;
  6. endp;                                                            # TRANSLATE
  7.  
  8.