FX_Mul


C Specification

#include <nitro/fx/fx.h>

fx32 FX_Mul(
    fx32    v1, 
    fx32    v2);

Description

This function multiplies two fx32 types. and returns the results as fx32 types. The calculations are performed internally using fx64 types. Values less than 1/4096 are discarded. The section that contains this function was developed as a function to be called for THUMB code or as an inline function for ARM code.

Arguments

v1 fx32 format fixed-point decimal
v2 fx32 format fixed-point decimal

Return Values

Result of multiplying v1 and v2.

See Also

FX_Div, FX_Sqrt, FX_Inv

Revision History

01/19/2004 Initial Version