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