From c505b57f53c70418c0d515873094cd0d79090337 Mon Sep 17 00:00:00 2001 From: ths Date: Wed, 10 Jan 2007 16:25:04 +0000 Subject: [PATCH] Increase MIPS BIOS from 128kB to 4MB, by Aurelien Jarno. --- vl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.h b/vl.h index b1be8c23e..db367c13b 100644 --- a/vl.h +++ b/vl.h @@ -168,7 +168,7 @@ extern int nb_option_roms; #if defined (TARGET_PPC) || defined (TARGET_SPARC64) #define BIOS_SIZE ((512 + 32) * 1024) #elif defined(TARGET_MIPS) -#define BIOS_SIZE (128 * 1024) +#define BIOS_SIZE (4 * 1024 * 1024) #else #define BIOS_SIZE ((256 + 64) * 1024) #endif -- 2.39.5