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>
17 lines
343 B
C
17 lines
343 B
C
#ifndef ULTRA64_TIME_H
|
|
#define ULTRA64_TIME_H
|
|
|
|
#include "message.h"
|
|
|
|
typedef u64 OSTime;
|
|
|
|
typedef struct OSTimer {
|
|
/* 0x00 */ struct OSTimer* next;
|
|
/* 0x04 */ struct OSTimer* prev;
|
|
/* 0x08 */ OSTime interval;
|
|
/* 0x10 */ OSTime value;
|
|
/* 0x18 */ OSMesgQueue* mq;
|
|
/* 0x1C */ OSMesg msg;
|
|
} OSTimer; // size = 0x20
|
|
|
|
#endif
|