mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 20:38:28 +00:00
9 lines
175 B
C
9 lines
175 B
C
|
#include "cpu.h"
|
||
|
|
||
|
#define BIOS_SIZE (4 * 1024 * 1024)
|
||
|
#ifdef TARGET_WORDS_BIGENDIAN
|
||
|
#define BIOS_FILENAME "mips_bios.bin"
|
||
|
#else
|
||
|
#define BIOS_FILENAME "mipsel_bios.bin"
|
||
|
#endif
|