mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 14:39:00 +00:00
29a7d89d19
osdep.h has a few things which are really compiler specific; move them to compiler.h, and include compiler.h from osdep.h. Backports commit 4912086865083a008f4fb73173fd0ddf2206c4d9 from qemu
23 lines
465 B
C
23 lines
465 B
C
/*
|
|
* Misc ARM declarations
|
|
*
|
|
* Copyright (c) 2006 CodeSourcery.
|
|
* Written by Paul Brook
|
|
*
|
|
* This code is licensed under the LGPL.
|
|
*
|
|
*/
|
|
|
|
#ifndef ARM_MISC_H
|
|
#define ARM_MISC_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 /* !ARM_MISC_H */
|