You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
36 lines
573 B
C
36 lines
573 B
C
#ifndef PR_OS_SYSTEM_H
|
|
#define PR_OS_SYSTEM_H
|
|
|
|
#include "ultratypes.h"
|
|
|
|
/*
|
|
* Values for osTvType
|
|
*/
|
|
#define OS_TV_PAL 0
|
|
#define OS_TV_NTSC 1
|
|
#define OS_TV_MPAL 2
|
|
|
|
/*
|
|
* Size of buffer the retains contents after NMI
|
|
*/
|
|
#define OS_APP_NMI_BUFSIZE 64
|
|
|
|
extern s32 osTvType;
|
|
extern s32 osRomType;
|
|
extern void* osRomBase;
|
|
extern s32 osResetType;
|
|
extern s32 osCicId;
|
|
extern s32 osVersion;
|
|
extern u32 osMemSize;
|
|
extern s32 osAppNMIBuffer[8];
|
|
|
|
extern u64 osClockRate;
|
|
|
|
extern s32 osViClock;
|
|
|
|
extern u32 __OSGlobalIntMask;
|
|
|
|
u32 osGetMemSize(void);
|
|
s32 osAfterPreNMI(void);
|
|
|
|
#endif |