Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
28 lines
696 B
C
28 lines
696 B
C
/*
|
|
* QEMU binary/target API (qemu-system-arm)
|
|
*
|
|
* Copyright (c) Linaro
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/target-info-impl.h"
|
|
#include "qemu/target-info-init.h"
|
|
#include "hw/arm/machines-qom.h"
|
|
#include "target/arm/cpu-qom.h"
|
|
#include "target/arm/cpu-param.h"
|
|
|
|
static const TargetInfo target_info_arm_system = {
|
|
.target_name = "arm",
|
|
.target_arch = SYS_EMU_TARGET_ARM,
|
|
.long_bits = 32,
|
|
.cpu_type = TYPE_ARM_CPU,
|
|
.machine_typename = TYPE_TARGET_ARM_MACHINE,
|
|
.endianness = ENDIAN_MODE_LITTLE,
|
|
.page_bits_vary = true,
|
|
.page_bits_init = TARGET_PAGE_BITS_LEGACY,
|
|
};
|
|
|
|
target_info_init(target_info_arm_system)
|