4
0
Эх сурвалжийг харах

feat: Add update_sum method to Sstatus struct (#8)

LoGin 11 сар өмнө
parent
commit
4241a97627

+ 9 - 0
riscv/src/register/sstatus.rs

@@ -99,6 +99,15 @@ impl Sstatus {
         self.bits & (1 << 18) != 0
     }
 
+    #[inline]
+    pub fn update_sum(&mut self, value: bool) {
+        if value {
+            self.bits |= 1 << 18;
+        } else {
+            self.bits &= !(1 << 18);
+        }
+    }
+
     /// Make eXecutable Readable
     #[inline]
     pub fn mxr(&self) -> bool {