| * Copyright IBM, Corp. 2012 |
| * Anthony Liguori <aliguori@us.ibm.com> |
| * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| * See the COPYING file in the top-level directory. |
| #include "qemu/error-report.h" |
| #include "sysemu/sysemu.h" |
| #include "exec/address-spaces.h" |
| static void machine_none_init(MachineState *mch) |
| /* Initialize CPU (if a model has been specified) */ |
| cpu = cpu_init(mch->cpu_model); |
| error_report("Unable to initialize CPU"); |
| /* RAM at address zero */ |
| MemoryRegion *ram = g_new(MemoryRegion, 1); |
| memory_region_allocate_system_memory(ram, NULL, "ram", mch->ram_size); |
| memory_region_add_subregion(get_system_memory(), 0, ram); |
| static void machine_none_machine_init(MachineClass *mc) |
| mc->desc = "empty machine"; |
| mc->init = machine_none_init; |
| mc->default_ram_size = 0; |
| DEFINE_MACHINE("none", machine_none_machine_init) |