Match dvd.c, not linking for now (links with patched 1.2.5)

Former-commit-id: d0ad5f5ef8
This commit is contained in:
2022-09-15 18:17:42 -07:00
parent e5dd64ab55
commit 047ee1a32e
11 changed files with 1890 additions and 436 deletions

View File

@@ -0,0 +1,16 @@
#ifndef __OSBOOTINFO_H__
#define __OSBOOTINFO_H__
typedef struct OSBootInfo {
DVDDiskID DVDDiskID;
u32 magic;
u32 version;
u32 memorySize;
u32 consoleType;
void* arenaLo;
void* arenaHi;
void* FSTLocation;
u32 FSTMaxLength;
} OSBootInfo;
#endif // __OSBOOTINFO_H__