浏览代码

Add a function to `Sstatus` to update fs field (#3)

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

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

@@ -51,6 +51,15 @@ 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) {
+        self.bits &= !(0x3 << 13); // clear previous value
+        self.bits |= (fs as usize) << 13;
+    }
+
     /// The status of additional user-mode extensions
     /// and associated state
     #[inline]