mirror of https://github.com/zeldaret/mm.git
Fix misidentified function
This commit is contained in:
parent
b32ad2401f
commit
53ebb015f3
|
@ -111,7 +111,7 @@ known_funcs = {
|
||||||
0x8008E050:("_Printf","int","void* (*pfn)(void*), void* arg, const unsigned char* fmt, va_list ap"),
|
0x8008E050:("_Printf","int","void* (*pfn)(void*), void* arg, const unsigned char* fmt, va_list ap"),
|
||||||
0x8008E698:("func_8008E698","UNK_RET","UNK_ARGS"), # this does not have a name? (maybe not exported idk) (_Putfld?)
|
0x8008E698:("func_8008E698","UNK_RET","UNK_ARGS"), # this does not have a name? (maybe not exported idk) (_Putfld?)
|
||||||
0x8008EDE0:("osUnmapTLBAll","void","void"),
|
0x8008EDE0:("osUnmapTLBAll","void","void"),
|
||||||
0x8008EE30:("osPiStartDma","s32","OSIoMesg* mb, s32 priority, s32 direction, u32 devAddr, void* dramAddr, u32 size, OSMesgQueue* mq"),
|
0x8008EE30:("osEPiStartDma","s32","OSPiHandle* pihandle, OSIoMesg* mb, s32 direction"),
|
||||||
0x8008F1A0:("strchr","unsigned char*","const unsigned char* s, int c"),
|
0x8008F1A0:("strchr","unsigned char*","const unsigned char* s, int c"),
|
||||||
0x8008F1E0:("strlen","size_t","const unsigned char* s"), # unsigned int == size_t
|
0x8008F1E0:("strlen","size_t","const unsigned char* s"), # unsigned int == size_t
|
||||||
0x8008F208:("memcpy","void*","void* s1, const void* s2, size_t n"), # unsigned int == size_t
|
0x8008F208:("memcpy","void*","void* s1, const void* s2, size_t n"), # unsigned int == size_t
|
||||||
|
|
|
@ -333,7 +333,7 @@ UNK_RET func_8008E698(UNK_ARGS); // func_8008E698
|
||||||
// UNK_RET func_8008ECFC(UNK_ARGS);
|
// UNK_RET func_8008ECFC(UNK_ARGS);
|
||||||
// UNK_RET func_8008ED30(UNK_ARGS);
|
// UNK_RET func_8008ED30(UNK_ARGS);
|
||||||
void osUnmapTLBAll(void); // func_8008EDE0
|
void osUnmapTLBAll(void); // func_8008EDE0
|
||||||
s32 osPiStartDma(OSIoMesg* mb, s32 priority, s32 direction, u32 devAddr, void* dramAddr, u32 size, OSMesgQueue* mq); // func_8008EE30
|
s32 osEPiStartDma(OSPiHandle* pihandle, OSIoMesg* mb, s32 direction); // func_8008EE30
|
||||||
// UNK_RET func_8008EED0(UNK_ARGS);
|
// UNK_RET func_8008EED0(UNK_ARGS);
|
||||||
// UNK_RET func_8008F100(UNK_ARGS);
|
// UNK_RET func_8008F100(UNK_ARGS);
|
||||||
unsigned char* strchr(const unsigned char* s, int c); // func_8008F1A0
|
unsigned char* strchr(const unsigned char* s, int c); // func_8008F1A0
|
||||||
|
|
Loading…
Reference in New Issue