diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2022-04-30 22:49:43 -0700 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2022-05-05 09:35:50 +0100 |
| commit | cf7c6d1004eaaae85fd6156556e2f38ff493ef48 (patch) | |
| tree | 69778801498cea5864faf67713ce26d1752f20c6 /target/arm/helper.c | |
| parent | cda86e2b46de857e8b6e16ecd13bb85d81e07899 (diff) | |
| download | focaccia-qemu-cf7c6d1004eaaae85fd6156556e2f38ff493ef48.tar.gz focaccia-qemu-cf7c6d1004eaaae85fd6156556e2f38ff493ef48.zip | |
target/arm: Split out cpregs.h
Move ARMCPRegInfo and all related declarations to a new internal header, out of the public cpu.h. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220501055028.646596-2-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/helper.c')
| -rw-r--r-- | target/arm/helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c index 5a244c3ed9..3f2e555d6f 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -36,6 +36,7 @@ #include "exec/cpu_ldst.h" #include "semihosting/common-semi.h" #endif +#include "cpregs.h" #define ARM_CPU_FREQ 1000000000 /* FIXME: 1 GHz, should be configurable */ #define PMCR_NUM_COUNTERS 4 /* QEMU IMPDEF choice */ |