summaryrefslogtreecommitdiff
path: root/arm9/lib/include
diff options
context:
space:
mode:
authorred031000 <rubenru09@aol.com>2021-07-06 00:31:33 +0100
committerred031000 <rubenru09@aol.com>2021-07-06 00:33:32 +0100
commit5f0a31c4470f86aaad37ab56e46ce33f6fb4167b (patch)
tree19c8d969d281590d81226a561790f695011e7b23 /arm9/lib/include
parentf71d98bf2843eb8f4c0a140184a6ffa30ed1f1e5 (diff)
decompile MSL_Common_arith
Diffstat (limited to 'arm9/lib/include')
-rw-r--r--arm9/lib/include/MSL.h8
-rw-r--r--arm9/lib/include/MSL_Common_arith.h8
2 files changed, 16 insertions, 0 deletions
diff --git a/arm9/lib/include/MSL.h b/arm9/lib/include/MSL.h
new file mode 100644
index 00000000..a1709bc4
--- /dev/null
+++ b/arm9/lib/include/MSL.h
@@ -0,0 +1,8 @@
+#ifndef MSL_H
+#define MSL_H
+
+//include all msl files here
+
+#include "MSL_Common_arith.h"
+
+#endif //MSL_H
diff --git a/arm9/lib/include/MSL_Common_arith.h b/arm9/lib/include/MSL_Common_arith.h
new file mode 100644
index 00000000..3ec6bdbc
--- /dev/null
+++ b/arm9/lib/include/MSL_Common_arith.h
@@ -0,0 +1,8 @@
+#ifndef MSL_COMMON_ARITH_H
+#define MSL_COMMON_ARITH_H
+
+#include "nitro/types.h"
+
+s32 abs(s32 val);
+
+#endif //MSL_COMMON_ARITH_H