target-i386: Use mulu2 and muls2
[qemu/pbrook.git] / hw / null-machine.c
blobbdf109fef1ef6b74f0b8831b1d27e244443fd399
1 /*
2 * Empty machine
4 * Copyright IBM, Corp. 2012
6 * Authors:
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-common.h"
15 #include "hw/hw.h"
16 #include "hw/boards.h"
18 static void machine_none_init(QEMUMachineInitArgs *args)
22 static QEMUMachine machine_none = {
23 .name = "none",
24 .desc = "empty machine",
25 .init = machine_none_init,
26 .max_cpus = 0,
27 DEFAULT_MACHINE_OPTIONS,
30 static void register_machines(void)
32 qemu_register_machine(&machine_none);
35 machine_init(register_machines);