4 * Copyright IBM, Corp. 2012
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu/error-report.h"
16 #include "hw/boards.h"
17 #include "exec/address-spaces.h"
18 #include "hw/core/cpu.h"
20 static void machine_none_init(MachineState
*mch
)
24 /* Initialize CPU (if user asked for it) */
26 cpu
= cpu_create(mch
->cpu_type
);
28 error_report("Unable to initialize CPU");
33 /* RAM at address zero */
35 memory_region_add_subregion(get_system_memory(), 0, mch
->ram
);
38 if (mch
->kernel_filename
) {
39 error_report("The -kernel parameter is not supported "
40 "(use the generic 'loader' device instead).");
45 static void machine_none_machine_init(MachineClass
*mc
)
47 mc
->desc
= "empty machine";
48 mc
->init
= machine_none_init
;
50 mc
->default_ram_size
= 0;
51 mc
->default_ram_id
= "ram";
59 DEFINE_MACHINE("none", machine_none_machine_init
)