pub trait GicOptions {
    const GIC_DISTRIBUTOR_BASE: usize;
    const GIC_CPU_BASE: usize;
}
Expand description

The options for use_gic!.

Required Associated Constants

The base address of GIC distributor registers.

The base address of GIC CPU interface registers.

Implementors