blob: 1be0e1634da62d4e924c2ed20cd2a28a998cef17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Created by red031000 on 2020-05-05.
//
#include "OS_emulator.h"
#include "function_target.h"
extern u32 OSi_ConsoleTypeCache; //todo fix bss
ARM_FUNC BOOL OS_IsRunOnEmulator() {
return FALSE;
}
ARM_FUNC u32 OS_GetConsoleType() {
OSi_ConsoleTypeCache = OS_CONSOLE_NITRO | OS_CONSOLE_DEV_CARD | OS_CONSOLE_SIZE_4MB;
return OSi_ConsoleTypeCache;
}
|