mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
added cpu_model parameter to cpu_init()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3562 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7d77bf2006
commit
aaed909a49
46 changed files with 320 additions and 324 deletions
|
@ -26,10 +26,14 @@ static void realview_init(int ram_size, int vga_ram_size,
|
|||
int n;
|
||||
int done_smc = 0;
|
||||
|
||||
env = cpu_init();
|
||||
if (!cpu_model)
|
||||
cpu_model = "arm926";
|
||||
cpu_arm_set_model(env, cpu_model);
|
||||
env = cpu_init(cpu_model);
|
||||
if (!env) {
|
||||
fprintf(stderr, "Unable to find CPU definition\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* ??? RAM shoud repeat to fill physical memory space. */
|
||||
/* SDRAM at address zero. */
|
||||
cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue