2019-06-04 20:16:18 +02:00
|
|
|
#ifndef HW_MIPS_BIOS_H
|
|
|
|
#define HW_MIPS_BIOS_H
|
|
|
|
|
2018-06-25 14:42:22 +02:00
|
|
|
#include "qemu/units.h"
|
2009-05-19 15:52:42 +02:00
|
|
|
#include "cpu.h"
|
|
|
|
|
2018-06-25 14:42:22 +02:00
|
|
|
#define BIOS_SIZE (4 * MiB)
|
2009-05-19 15:52:42 +02:00
|
|
|
#ifdef TARGET_WORDS_BIGENDIAN
|
|
|
|
#define BIOS_FILENAME "mips_bios.bin"
|
|
|
|
#else
|
|
|
|
#define BIOS_FILENAME "mipsel_bios.bin"
|
|
|
|
#endif
|
2019-06-04 20:16:18 +02:00
|
|
|
|
|
|
|
#endif
|