|
@@ -9,25 +9,25 @@ pub struct Mcounteren {
|
|
|
}
|
|
|
|
|
|
impl Mcounteren {
|
|
|
- /// Supervisor "cycle[h]" Enable
|
|
|
+ /// Supervisor "cycle\[h\]" Enable
|
|
|
#[inline]
|
|
|
pub fn cy(&self) -> bool {
|
|
|
self.bits.get_bit(0)
|
|
|
}
|
|
|
|
|
|
- /// Supervisor "time[h]" Enable
|
|
|
+ /// Supervisor "time\[h\]" Enable
|
|
|
#[inline]
|
|
|
pub fn tm(&self) -> bool {
|
|
|
self.bits.get_bit(1)
|
|
|
}
|
|
|
|
|
|
- /// Supervisor "instret[h]" Enable
|
|
|
+ /// Supervisor "instret\[h\]" Enable
|
|
|
#[inline]
|
|
|
pub fn ir(&self) -> bool {
|
|
|
self.bits.get_bit(2)
|
|
|
}
|
|
|
|
|
|
- /// Supervisor "hpm[x]" Enable (bits 3-31)
|
|
|
+ /// Supervisor "hpm\[x\]" Enable (bits 3-31)
|
|
|
#[inline]
|
|
|
pub fn hpm(&self, index: usize) -> bool {
|
|
|
assert!(3 <= index && index < 32);
|