mirror of
https://github.com/YohannDR/mzm.git
synced 2024-11-23 13:09:43 +00:00
13 lines
249 B
C
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 */
|
|
|
|
s16 FixedMultiplication(s16 a, s16 b);
|
|
s16 FixedDivision(s16 a, s16 b);
|
|
s16 FixedInverse(s16 a);
|
|
|
|
#endif /* FIXED_POINT_H */
|