add roms/pcbios
[armpft.git] / hw / boards.h
blobd8893413d42536e072e63931b5ea3bb9e916e2b0
1 /* Declarations for use by board files for creating devices. */
3 #ifndef HW_BOARDS_H
4 #define HW_BOARDS_H
6 #include "qdev.h"
8 typedef void QEMUMachineInitFunc(ram_addr_t ram_size,
9 const char *boot_device,
10 const char *kernel_filename,
11 const char *kernel_cmdline,
12 const char *initrd_filename,
13 const char *cpu_model);
15 typedef struct QEMUMachine {
16 const char *name;
17 const char *alias;
18 const char *desc;
19 QEMUMachineInitFunc *init;
20 int use_scsi;
21 int max_cpus;
22 int is_default;
23 CompatProperty *compat_props;
24 struct QEMUMachine *next;
25 } QEMUMachine;
27 int qemu_register_machine(QEMUMachine *m);
29 extern QEMUMachine *current_machine;
31 #endif