Revision 7fb4fdcf hw/pc.c

b/hw/pc.c
39 39
#define VGABIOS_FILENAME "vgabios.bin"
40 40
#define VGABIOS_CIRRUS_FILENAME "vgabios-cirrus.bin"
41 41

  
42
#define PC_MAX_BIOS_SIZE (4 * 1024 * 1024)
43

  
42 44
/* Leave a chunk of memory at the top of RAM for the BIOS ACPI tables.  */
43 45
#define ACPI_DATA_SIZE       0x10000
44 46

  
......
1018 1020
    "pc",
1019 1021
    "Standard PC",
1020 1022
    pc_init_pci,
1023
    VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
1021 1024
};
1022 1025

  
1023 1026
QEMUMachine isapc_machine = {
1024 1027
    "isapc",
1025 1028
    "ISA-only PC",
1026 1029
    pc_init_isa,
1030
    VGA_RAM_SIZE + PC_MAX_BIOS_SIZE,
1027 1031
};

Also available in: Unified diff