소스 검색

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

LoGin 11 달 전
부모
커밋
4241a97627
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      riscv/src/register/sstatus.rs

+ 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 {