diff --git a/include/qemu/target-info.h b/include/qemu/target-info.h index 23c997de54..6c5b714288 100644 --- a/include/qemu/target-info.h +++ b/include/qemu/target-info.h @@ -99,4 +99,11 @@ bool target_ppc64(void); */ bool target_s390x(void); +/** + * target_riscv64: + * + * Returns whether the target architecture is riscv64 + */ +bool target_riscv64(void); + #endif diff --git a/target-info.c b/target-info.c index 28c458fc7a..04c69c41f8 100644 --- a/target-info.c +++ b/target-info.c @@ -93,3 +93,8 @@ bool target_s390x(void) { return target_arch() == SYS_EMU_TARGET_S390X; } + +bool target_riscv64(void) +{ + return target_arch() == SYS_EMU_TARGET_RISCV64; +}