mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
dc1501e7a0
* ucode_disas.h * create UcodeType * bss
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
#ifndef UCODE_DISAS_H
|
|
#define UCODE_DISAS_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
typedef enum UcodeType {
|
|
/* 0 */ UCODE_TYPE_NULL,
|
|
/* 1 */ UCODE_TYPE_F3DZEX,
|
|
/* 2 */ UCODE_TYPE_UNK, // Likely F3DEX2 or a similar variant
|
|
/* 3 */ UCODE_TYPE_S2DEX
|
|
} UcodeType;
|
|
|
|
typedef struct UCodeInfo {
|
|
/* 0x00 */ u32 type;
|
|
/* 0x04 */ void* ptr;
|
|
} UCodeInfo; // size = 0x8
|
|
|
|
typedef struct UCodeDisas {
|
|
/* 0x00 */ uintptr_t segments[NUM_SEGMENTS];
|
|
/* 0x40 */ Gfx* dlStack[18];
|
|
/* 0x88 */ s32 dlDepth;
|
|
/* 0x8C */ u32 dlCnt;
|
|
/* 0x90 */ u32 vtxCnt;
|
|
/* 0x94 */ u32 spvtxCnt;
|
|
/* 0x98 */ u32 tri1Cnt;
|
|
/* 0x9C */ u32 tri2Cnt;
|
|
/* 0xA0 */ u32 quadCnt;
|
|
/* 0xA4 */ u32 lineCnt;
|
|
/* 0xA8 */ u32 loaducodeCnt;
|
|
/* 0xAC */ u32 pipeSyncRequired;
|
|
/* 0xB0 */ u32 tileSyncRequired;
|
|
/* 0xB4 */ u32 loadSyncRequired;
|
|
/* 0xB8 */ u32 syncErr;
|
|
/* 0xBC */ s32 enableLog;
|
|
/* 0xC0 */ s32 ucodeType;
|
|
/* 0xC4 */ s32 ucodeInfoCount;
|
|
/* 0xC8 */ UCodeInfo* ucodeInfo;
|
|
/* 0xCC */ u32 modeH;
|
|
/* 0xD0 */ u32 modeL;
|
|
/* 0xD4 */ u32 geometryMode;
|
|
} UCodeDisas; // size = 0xD8
|
|
|
|
void UCodeDisas_Init(UCodeDisas*);
|
|
void UCodeDisas_Destroy(UCodeDisas*);
|
|
void UCodeDisas_Disassemble(UCodeDisas*, Gfx*);
|
|
void UCodeDisas_RegisterUCode(UCodeDisas*, s32, UCodeInfo*);
|
|
void UCodeDisas_SetCurUCode(UCodeDisas*, void*);
|
|
|
|
#endif
|