mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 21:09:52 +00:00
2006a65ba6
* overlay matches * prototypes * fbdemo too * virtual to physical * names, cleanup, etc * bss reordering * uintptr stuff * fixed now? * one fix * headers and such * fixes'n'stuff * XXX action * docs of a sort * useless error codes * n * format * header? I barely know her! Co-authored-by: petrie911 <petrie911@users.noreply.github.com>
25 lines
824 B
C
25 lines
824 B
C
#ifndef _Z64_DMA_H_
|
|
#define _Z64_DMA_H_
|
|
|
|
#include "ultra64.h"
|
|
|
|
typedef struct {
|
|
/* 0x00 */ uintptr_t vromAddr; // VROM address (source)
|
|
/* 0x04 */ void* dramAddr; // DRAM address (destination)
|
|
/* 0x08 */ u32 size; // File Transfer size
|
|
/* 0x0C */ char* filename; // Filename for debugging
|
|
/* 0x10 */ s32 line; // Line for debugging
|
|
/* 0x14 */ s32 unk14;
|
|
/* 0x18 */ OSMesgQueue* notifyQueue; // Message queue for the notification message
|
|
/* 0x1C */ OSMesg notifyMsg; // Completion notification message
|
|
} DmaRequest; // size = 0x20
|
|
|
|
typedef struct {
|
|
/* 0x0 */ uintptr_t vromStart;
|
|
/* 0x4 */ uintptr_t vromEnd;
|
|
/* 0x8 */ uintptr_t romStart;
|
|
/* 0xC */ uintptr_t romEnd;
|
|
} DmaEntry; // size = 0x10
|
|
|
|
#endif
|