```rust /// Supervisor "hpm\[x\]" Enable (bits 3-31) #[inline] pub fn hpm(&self, index: usize) -> bool { assert!((3..32).contains(&index)); self.bits & (1 << index) != 0 } ``` Got it :)