
		;   FLOG10.A
		;
		;   D0 = flog10(D0)
		;	      4(sp)
		;
		;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved

		section text,code

		xref	_MathIeeeSingTransBase
		xref	_LVOIEEESPLog10
		xdef	__splog10

__splog10	move.l	4(sp),D0
		move.l	A6,-(sp)
		move.l	_MathIeeeSingTransBase(A4),A6
		jsr	_LVOIEEESPLog10(A6)
		move.l	(sp)+,A6
		rts

		END

