mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 19:15:34 +00:00
a7f59d7771
Convert all machines to use DEFINE_MACHINE() instead of QEMUMachine automatically using a script. Backports commit e264d29de28c5b0be3d063307ce9fb613b427cc3 from qemu
24 lines
473 B
C
24 lines
473 B
C
/*
|
|
* Misc ARM declarations
|
|
*
|
|
* Copyright (c) 2006 CodeSourcery.
|
|
* Written by Paul Brook
|
|
*
|
|
* This code is licensed under the LGPL.
|
|
*
|
|
*/
|
|
|
|
#ifndef HW_ARM_H
|
|
#define HW_ARM_H
|
|
|
|
#include "exec/memory.h"
|
|
#include "target/arm/cpu-qom.h"
|
|
|
|
void tosa_machine_init_register_types(struct uc_struct *uc);
|
|
void machvirt_machine_init(struct uc_struct *uc); // ARM64
|
|
|
|
void arm_cpu_register_types(void *opaque);
|
|
void aarch64_cpu_register_types(void *opaque);
|
|
|
|
#endif /* HW_ARM_H */
|