mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-26 23:45:37 +00:00
9ae2fc4d9e
Header guard symbols should match their file name to make guard collisions less likely. Offenders found with scripts/clean-header-guards.pl -vn. Cleaned up with scripts/clean-header-guards.pl, followed by some renaming of new guard symbols picked by the script to better ones. Backports commit 121d07125bb6d7079c7ebafdd3efe8c3a01cc440 from qemu
24 lines
458 B
C
24 lines
458 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(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 */
|