unicorn/qemu/include/hw/sparc/sparc.h
Andreas Färber 048aaf05ca
Revert use of DEFINE_MACHINE() for registrations of multiple machines
The script used for converting from QEMUMachine had used one
DEFINE_MACHINE() per machine registered. In cases where multiple
machines are registered from one source file, avoid the excessive
generation of module init functions by reverting this unrolling.

Backports commit 8a661aea0e7f6e776c6ebc9abe339a85b34fea1d from qemu
2018-03-11 15:17:17 -04:00

9 lines
209 B
C

#ifndef HW_SPARC_H
#define HW_SPARC_H
void sparc_cpu_register_types(void *opaque);
void leon3_generic_machine_init_register_types(struct uc_struct *uc);
void sun4u_machine_init(struct uc_struct *uc);
#endif