浏览代码

Merge #80

80: add support for mprv r=almindor a=jwnhy



Co-authored-by: john <799433746@qq.com>
Co-authored-by: John Weston <18240025+jwnhy@users.noreply.github.com>
bors[bot] 3 年之前
父节点
当前提交
75cf170c4a
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      src/register/mstatus.rs

+ 9 - 0
src/register/mstatus.rs

@@ -142,6 +142,12 @@ impl Mstatus {
         }
     }
 
+    /// Modify Memory PRiVilege
+    #[inline]
+    pub fn mprv(&self) -> bool {
+        self.bits.get_bit(17)
+    }
+
     /// Permit Supervisor User Memory access
     #[inline]
     pub fn sum(&self) -> bool {
@@ -226,6 +232,9 @@ set_csr!(
 set_csr!(
     /// Machine Previous Interrupt Enable
     , set_mpie, 1 << 7);
+set_clear_csr!(
+    /// Modify Memory PRiVilege
+    , set_mprv, clear_mprv, 1 << 17);
 set_clear_csr!(
     /// Permit Supervisor User Memory access
     , set_sum, clear_sum, 1 << 18);