Implement FMOD function for fixed-point modulo

Fixes #1021
This commit is contained in:
Rangi
2022-08-27 12:40:55 -04:00
committed by Eldred Habert
parent 1a1f1365e6
commit 425339ccf6
6 changed files with 19 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ int32_t fix_ACos(int32_t i);
int32_t fix_ATan(int32_t i);
int32_t fix_ATan2(int32_t i, int32_t j);
int32_t fix_Mul(int32_t i, int32_t j);
int32_t fix_Mod(int32_t i, int32_t j);
int32_t fix_Div(int32_t i, int32_t j);
int32_t fix_Pow(int32_t i, int32_t j);
int32_t fix_Log(int32_t i, int32_t j);