mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 04:43:54 -06:00

Many of these should be cleaned up with proper qdev-/QOM-ification. Right now there are many catch-all headers in include/hw/ARCH depending on cpu.h, and this makes it necessary to compile these files per-target. However, fixing this does not belong in these patches. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
8 lines
175 B
C
8 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
|