Name function FastDivide

This commit is contained in:
Aetias
2023-12-20 10:38:50 +01:00
parent 9afe4a1796
commit 282500b724
13 changed files with 70 additions and 62 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef LIB_MATH_H
#define LIB_MATH_H
#include "types.h"
extern "C" u32 FastDivide(u32 a, u32 b);
#endif