AArch64 EL2 hypervisor for QEMU virt that boots at EL2
1

Configure Feed

Select the types of activity you want to include in your feed.

ariel / tests / host / test_hvc_abi.c
236 B 11 lines
1#include "hv/hvc_abi.h" 2 3#include <assert.h> 4 5int main(void) 6{ 7 assert(hv_hvc_operation_valid(HV_HVC_GET_HV_ID)); 8 assert(hv_hvc_operation_valid(HV_HVC_REPORT_EXCEPTION)); 9 assert(!hv_hvc_operation_valid(64u)); 10 return 0; 11}