Move kernel boot flags into EmuShared since it is the only place stored the flag.

This commit is contained in:
RadWolfie 2018-06-27 19:19:18 -05:00
parent cf2d7b0f94
commit cee51d0800
2 changed files with 10 additions and 10 deletions

View File

@ -190,16 +190,6 @@ extern "C" {
#define VECTOR2IRQ(vector) ((vector)-IRQ_BASE)
#define VECTOR2IRQL(vector) (MAX_BUS_INTERRUPT_LEVEL - VECTOR2IRQ(vector))
// Kernel boot flags
enum {
BOOT_NONE = 0,
BOOT_EJECT_PENDING = 1 << 0,
BOOT_FATAL_ERROR = 1 << 1,
BOOT_SKIP_ANIMATION = 1 << 2,
BOOT_RUN_DASHBOARD = 1 << 3,
BOOT_QUICK_REBOOT = 1 << 4,
};
/* Xbox PAGE Masks */
#define XBOX_PAGE_NOACCESS 0x01
#define XBOX_PAGE_READONLY 0x02

View File

@ -52,6 +52,16 @@ enum {
LLE_APU = 1 << 0,
LLE_GPU = 1 << 1,
LLE_JIT = 1 << 2,
};
// Kernel boot flags
enum {
BOOT_NONE = 0,
BOOT_EJECT_PENDING = 1 << 0,
BOOT_FATAL_ERROR = 1 << 1,
BOOT_SKIP_ANIMATION = 1 << 2,
BOOT_RUN_DASHBOARD = 1 << 3,
BOOT_QUICK_REBOOT = 1 << 4,
};
// ******************************************************************