Decompile __f_to_ll, __ull_to_d and __ull_to_f

This commit is contained in:
Ryan Dwyer
2021-01-25 17:43:41 +10:00
parent 18364b4e90
commit d951c64c1a
10 changed files with 94 additions and 127 deletions
-11
View File
@@ -1,11 +0,0 @@
#ifndef _IN_LIB_LIB_05A60_H
#define _IN_LIB_LIB_05A60_H
#include <ultra64.h>
#include "types.h"
u32 func00005a60(void);
u32 func00005a7c(void);
u32 func00005b18(void);
void func00005b30(u64 arg0);
#endif
+9
View File
@@ -0,0 +1,9 @@
#ifndef _IN_LIB_LIBC_LLCVT_H
#define _IN_LIB_LIBC_LLCVT_H
long long __f_to_ll(float f);
unsigned long long __f_to_ull(float f);
double __ll_to_d(long long s);
float __ull_to_f(unsigned long long u);
#endif