
		;   FFPA_SUB.A
		;
		;   D0	arg1	(4 bytes)
		;   D1	arg2	(4 bytes)
		;
		;   result -> D0
		;
		;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved

		section text,code

		xref	_MathBase
		xref	_LVOSPSub
		xdef	__ffpsub_a

__ffpsub_a	move.l	A6,-(sp)
		move.l	_MathBase(A4),A6
		jsr	_LVOSPSub(A6)
		move.l	(sp)+,A6
		rts

		END

