浏览代码

Implement Mstatus.bits()

David Reiss 1 年之前
父节点
当前提交
b3c100a8e2
共有 2 个文件被更改,包括 7 次插入0 次删除
  1. 1 0
      riscv/CHANGELOG.md
  2. 6 0
      riscv/src/register/mstatus.rs

+ 1 - 0
riscv/CHANGELOG.md

@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 ### Added
 
 - Add `Mcause::from(usize)` for use in unit tests
+- Add `Mstatus.bits()`
 
 ### Fixed
 

+ 6 - 0
riscv/src/register/mstatus.rs

@@ -65,6 +65,12 @@ impl From<bool> for Endianness {
 }
 
 impl Mstatus {
+    /// Returns the contents of the register as raw bits
+    #[inline]
+    pub fn bits(&self) -> usize {
+        self.bits
+    }
+
     /// Supervisor Interrupt Enable
     #[inline]
     pub fn sie(&self) -> bool {