pub enum VectorBaseAddressRegister {}
Available on ARM only.
Expand description
Contains the address of the VectorTable
that the processor should use.
Implementations§
source§impl VectorBaseAddressRegister
impl VectorBaseAddressRegister
sourcepub fn get() -> *const VectorTable
pub fn get() -> *const VectorTable
Retrieve the current value of this register for the specified exception level.
Only defined for exception levels 1–3. The register for a given exception level is only accessible from that level or higher.
sourcepub fn set(value: *const VectorTable)
pub fn set(value: *const VectorTable)
Update the register for the specified exception level with the given value.
Address must be aligned to 11 bits (2048).