浏览代码

update sie and spp (#4)

LoGin 1 年之前
父节点
当前提交
b25fb62d28
共有 1 个文件被更改,包括 20 次插入1 次删除
  1. 20 1
      riscv/src/register/sstatus.rs

+ 20 - 1
riscv/src/register/sstatus.rs

@@ -23,6 +23,16 @@ impl Sstatus {
         self.bits & (1 << 1) != 0
     }
 
+    /// update the Supervisor Interrupt Enable field
+    #[inline]
+    pub fn update_sie(&mut self, value: bool) {
+        if value {
+            self.bits |= 1 << 1;
+        } else {
+            self.bits &= !(1 << 1);
+        }
+    }
+
     /// Supervisor Previous Interrupt Enable
     #[inline]
     pub fn spie(&self) -> bool {
@@ -38,6 +48,15 @@ impl Sstatus {
         }
     }
 
+    /// update the Supervisor Previous Privilege Mode field
+    #[inline]
+    pub fn update_spp(&mut self, spp: SPP) {
+        match spp {
+            SPP::Supervisor => self.bits |= 1 << 8,
+            SPP::User => self.bits &= !(1 << 8),
+        }
+    }
+
     /// The status of the floating-point unit
     #[inline]
     pub fn fs(&self) -> FS {
@@ -52,7 +71,7 @@ impl Sstatus {
     }
 
     /// Update the status of the floating-point unit
-    /// 
+    ///
     /// Note: This function only updates the FS field.
     #[inline]
     pub fn update_fs(&mut self, fs: FS) {