home *** CD-ROM | disk | FTP | other *** search
-
- ************************************************************************
- *
- * FLam linked library references for flam.library
- *
- * created: jmf 02-mar-88
- * modified: jmf 04-mar-88 Assemble with MCC macro assembler
- *
- ************************************************************************
-
-
- ******* Included Files *************************************************
-
- include "exec/types.i"
- include "exec/libraries.i"
-
- include "i_asmsupp.i"
- include "i_flamlib.i"
-
-
- ******* Exported *******************************************************
-
- XDEF _fl_Plus
- XDEF _fl_Minus
-
-
- ******* Imported *******************************************************
-
- XREF _FLamBase
-
-
- ************************************************************************
- *
- * Standard lib reference hunks
- *
- ************************************************************************
-
-
- SECTION text,CODE
-
-
- _fl_Plus:
- move.l _FLamBase,a1
- jmp LIB_FL_PLUS(a1)
-
-
- _fl_Minus:
- move.l _FLamBase,a1
- jmp LIB_FL_MINUS(a1)
-
-
-
- END
-