mirror of https://github.com/zeldaret/mm.git
Fix misidentified function
This commit is contained in:
parent
b32ad2401f
commit
53ebb015f3
|
@ -111,13 +111,13 @@ known_funcs = {
|
|||
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?)
|
||||
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"),
|
||||
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
|
||||
0x8008F240:("osCreateMesgQueue","void","OSMesgQueue* mq, OSMesg* msg, s32 msgCount"),
|
||||
0x8008F270:("osInvalICache","void","void *vaddr, s32 nbytes"),
|
||||
0x8008F2F0:("osInvalDCache","void","void *vaddr, s32 nbytes"),
|
||||
0x8008F270:("osInvalICache","void","void* vaddr, s32 nbytes"),
|
||||
0x8008F2F0:("osInvalDCache","void","void* vaddr, s32 nbytes"),
|
||||
0x8008F3A0:("__osTimerServicesInit","void","void"),
|
||||
0x8008F42C:("__osTimerInterrupt","void","void"),
|
||||
0x8008F5A4:("__osSetTimerIntr","void","OSTime tim"),
|
||||
|
|
|
@ -333,15 +333,15 @@ UNK_RET func_8008E698(UNK_ARGS); // func_8008E698
|
|||
// UNK_RET func_8008ECFC(UNK_ARGS);
|
||||
// UNK_RET func_8008ED30(UNK_ARGS);
|
||||
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_8008F100(UNK_ARGS);
|
||||
unsigned char* strchr(const unsigned char* s, int c); // func_8008F1A0
|
||||
size_t strlen(const unsigned char* s); // func_8008F1E0
|
||||
void* memcpy(void* s1, const void* s2, size_t n); // func_8008F208
|
||||
void osCreateMesgQueue(OSMesgQueue* mq, OSMesg* msg, s32 msgCount); // func_8008F240
|
||||
void osInvalICache(void *vaddr, s32 nbytes); // func_8008F270
|
||||
void osInvalDCache(void *vaddr, s32 nbytes); // func_8008F2F0
|
||||
void osInvalICache(void* vaddr, s32 nbytes); // func_8008F270
|
||||
void osInvalDCache(void* vaddr, s32 nbytes); // func_8008F2F0
|
||||
void __osTimerServicesInit(void); // func_8008F3A0
|
||||
void __osTimerInterrupt(void); // func_8008F42C
|
||||
void __osSetTimerIntr(OSTime tim); // func_8008F5A4
|
||||
|
|
Loading…
Reference in New Issue