mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-27 06:40:36 +00:00
666cb6ad4a
* low hanging fruits on variables.h
* z_actor functions
* Move RomFile to z64object.h
* Revert "z_actor functions"
This reverts commit aa99967d16
.
* yeet
* z64actor_dlftbls.h
* Move object segment declarations to object_table.c
* Move Camera functions
* z64nmi_buff.h
* fix merge
* su_mtx.h, sys_cmpdma.h and sys_initial_check.h
* sys_ucode.h
* sys_flashrom.h
* Remove unnecessary includes
* z64kanfont.h
* flg_set.h
* z64DLF.h
* z64lifemeter.h
* z64path.h
* format
* ObjectOverlay
* bss
* Yeet ObjectOverlay
* review
* review
* format
* bss
* z64font.h
11 lines
254 B
C
11 lines
254 B
C
#ifndef SYS_CPMDMA_H
|
|
#define SYS_CPMDMA_H
|
|
|
|
#include "PR/ultratypes.h"
|
|
#include "libc/stdint.h"
|
|
|
|
void CmpDma_LoadFile(uintptr_t segmentVrom, s32 id, void* dst, size_t size);
|
|
void CmpDma_LoadAllFiles(uintptr_t segmentVrom, void* dst, size_t size);
|
|
|
|
#endif
|