diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-19 14:52:42 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-19 14:52:42 +0100 |
commit | bba831e80fd15f439ac694950759032a8c71793b (patch) | |
tree | 61769b2a2112c24c5e96ceaf59092eeb33a62fbc /sysemu.h | |
parent | fd6dc90ba0932f082ac8284cc957dd7efd89d014 (diff) | |
download | qemu-bba831e80fd15f439ac694950759032a8c71793b.tar.gz qemu-bba831e80fd15f439ac694950759032a8c71793b.tar.bz2 qemu-bba831e80fd15f439ac694950759032a8c71793b.zip |
Remove obsolete BIOS_SIZE from sysemu.h
BIOS_SIZE is no longer needed by vl.c, so there's no point having it in
sysemu.h.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -123,14 +123,6 @@ extern const char *prom_envs[MAX_PROM_ENVS]; extern unsigned int nb_prom_envs; #endif -#if defined (TARGET_PPC) -#define BIOS_SIZE (1024 * 1024) -#elif defined (TARGET_SPARC64) -#define BIOS_SIZE ((512 + 32) * 1024) -#elif defined(TARGET_MIPS) -#define BIOS_SIZE (4 * 1024 * 1024) -#endif - typedef enum { IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, IF_COUNT |