]> Git Repo - qemu.git/blob - hw/hppa/machine.c
target/hppa: Skeleton support for hppa-softmmu
[qemu.git] / hw / hppa / machine.c
1 /*
2  * QEMU HPPA hardware system emulator.
3  * Copyright 2018 Helge Deller <[email protected]>
4  */
5
6 #include "qemu/osdep.h"
7 #include "qemu-common.h"
8 #include "cpu.h"
9 #include "hw/hw.h"
10 #include "elf.h"
11 #include "hw/loader.h"
12 #include "hw/boards.h"
13 #include "qemu/error-report.h"
14 #include "sysemu/sysemu.h"
15 #include "hw/timer/mc146818rtc.h"
16 #include "hw/ide.h"
17 #include "hw/timer/i8254.h"
18 #include "hw/char/serial.h"
19 #include "qemu/cutils.h"
20 #include "qapi/error.h"
21
22
23 static void machine_hppa_init(MachineState *machine)
24 {
25 }
26
27 static void machine_hppa_machine_init(MachineClass *mc)
28 {
29     mc->desc = "HPPA generic machine";
30     mc->init = machine_hppa_init;
31     mc->block_default_type = IF_SCSI;
32     mc->max_cpus = 1;
33     mc->is_default = 1;
34     mc->default_ram_size = 512 * M_BYTE;
35     mc->default_boot_order = "cd";
36 }
37
38 DEFINE_MACHINE("hppa", machine_hppa_machine_init)
This page took 0.025466 seconds and 4 git commands to generate.