2015-08-21 07:04:50 +00:00
|
|
|
/*
|
|
|
|
* Misc ARM declarations
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
|
|
|
* This code is licensed under the LGPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-02-25 09:18:40 +00:00
|
|
|
#ifndef HW_ARM_H
|
|
|
|
#define HW_ARM_H
|
2015-08-21 07:04:50 +00:00
|
|
|
|
|
|
|
#include "exec/memory.h"
|
2018-03-02 03:35:33 +00:00
|
|
|
#include "target/arm/cpu-qom.h"
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2018-03-11 18:49:09 +00:00
|
|
|
void tosa_machine_init_register_types(struct uc_struct *uc);
|
2015-08-21 07:04:50 +00:00
|
|
|
void machvirt_machine_init(struct uc_struct *uc); // ARM64
|
|
|
|
|
|
|
|
void arm_cpu_register_types(void *opaque);
|
|
|
|
void aarch64_cpu_register_types(void *opaque);
|
|
|
|
|
2018-02-25 09:18:40 +00:00
|
|
|
#endif /* HW_ARM_H */
|