OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BIOS_SIZE
(Results
1 - 2
of
2
) sorted by null
/external/qemu/hw/
mips-bios.h
3
#define
BIOS_SIZE
(4 * 1024 * 1024)
mips_r4k.c
167
int
bios_size
;
local
219
bios_size
= get_image_size(filename);
221
bios_size
= -1;
223
if ((
bios_size
> 0) && (
bios_size
<=
BIOS_SIZE
)) {
224
bios_offset = qemu_ram_alloc(
BIOS_SIZE
);
225
cpu_register_physical_memory(0x1fc00000,
BIOS_SIZE
,
228
load_image_targphys(filename, 0x1fc00000,
BIOS_SIZE
);
Completed in 88 milliseconds