Type Alias simics_api_sys::arm_avic_t

source ·
pub type arm_avic_t = arm_avic;
Expand description

The ARM AVIC interface makes it possible for an ARM processor to get the interrupt vector address from an AVIC device connected to the processor core. Both processor and AVIC must enable the AVIC interface to support this feature.

The processor calls get_interrupt_address function to get the interrupt vector address. The AVIC returns an arm_avic_t struct with a valid field and an address field, the address field is only valid when the valid is not 0.

Cell Context for all methods.

Aliased Type§

struct arm_avic_t {
    pub valid: i32,
    pub address: u32,
}

Fields§

§valid: i32§address: u32