mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
PREP and heathrow machines only support PowerPC CPU with a 6xx bus.
Mac99 machine may also support PowerPC 970 CPU. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2681 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
d0dfae6e91
commit
dd37a5e4d7
2 changed files with 44 additions and 12 deletions
|
@ -598,6 +598,10 @@ static void ppc_prep_init (int ram_size, int vga_ram_size, int boot_device,
|
|||
}
|
||||
|
||||
isa_mem_base = 0xc0000000;
|
||||
if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
|
||||
cpu_abort(env, "Only 6xx bus is supported on PREP machine\n");
|
||||
exit(1);
|
||||
}
|
||||
i8259 = i8259_init(first_cpu->irq_inputs[PPC6xx_INPUT_INT]);
|
||||
pci_bus = pci_prep_init(i8259);
|
||||
// pci_bus = i440fx_init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue