mzm/include/fixed_point.h
2022-09-21 11:12:44 +02:00

13 lines
249 B
C

#ifndef FIXED_POINT_H
#define FIXED_POINT_H
#include "types.h"
/* All of these use a 1.7.8 fixed point representation */
i16 FixedMultiplication(i16 a, i16 b);
i16 FixedDivision(i16 a, i16 b);
i16 FixedInverse(i16 a);
#endif /* FIXED_POINT_H */