1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-06 16:04:35 +00:00

Remove functions.h (#2501)

* split most of functions.h

* osdriverominit

* forgot include

* fix

* remove functions.h

* temporary fix for fix_bss

* fix bss

* revert fix_bss.py change
This commit is contained in:
fig02 2025-04-05 19:16:52 -04:00 committed by GitHub
parent 1beeff9658
commit 5133db15a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 326 additions and 194 deletions

9
include/memory_utils.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef MEMORY_UTILS_H
#define MEMORY_UTILS_H
#include "ultra64.h"
void* MemCpy(void* dest, const void* src, s32 len);
void* MemSet(void* dest, s32 val, s32 len);
#endif