mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
f1d183d6fe
* Restructure files, begin header restructure * Format * us2dex * Fix parallel spelling Co-authored-by: JoshDuMan <40190173+JoshDuMan@users.noreply.github.com> * Use OS_K0_TO_PHYSICAL in place of VIRTUAL_TO_PHYSICAL in osAiSetNextBuffer * Uppercase hex, exception vector address defines * Interrupt flags 1 Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Interrupt flags 2 Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> Co-authored-by: JoshDuMan <40190173+JoshDuMan@users.noreply.github.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
33 lines
659 B
C
33 lines
659 B
C
#ifndef ULTRA64_PRINTF_H
|
|
#define ULTRA64_PRINTF_H
|
|
|
|
#include "types.h"
|
|
|
|
typedef struct {
|
|
/* 0x0 */ union {
|
|
/* 0x0 */ s64 ll;
|
|
/* 0x0 */ f64 ld;
|
|
} v;
|
|
/* 0x8 */ char* s;
|
|
/* 0xC */ s32 n0;
|
|
/* 0x10 */ s32 nz0;
|
|
/* 0x14 */ s32 n1;
|
|
/* 0x18 */ s32 nz1;
|
|
/* 0x1C */ s32 n2;
|
|
/* 0x20 */ s32 nz2;
|
|
/* 0x24 */ s32 prec;
|
|
/* 0x28 */ s32 width;
|
|
/* 0x2C */ u32 nchar;
|
|
/* 0x30 */ u32 flags;
|
|
/* 0x34 */ u8 qual;
|
|
} _Pft; // size = 0x38
|
|
|
|
typedef void* (*PrintCallback)(void*, const char*, u32);
|
|
|
|
#define FLAGS_SPACE 1
|
|
#define FLAGS_PLUS 2
|
|
#define FLAGS_MINUS 4
|
|
#define FLAGS_HASH 8
|
|
#define FLAGS_ZERO 16
|
|
|
|
#endif
|