Browse Source

Merge pull request #198 from dreiss/master

Add some utility methods to Mstatus and Mcause
Aleš Katona 1 year ago
parent
commit
aca641040c
3 changed files with 18 additions and 0 deletions
  1. 5 0
      riscv/CHANGELOG.md
  2. 7 0
      riscv/src/register/mcause.rs
  3. 6 0
      riscv/src/register/mstatus.rs

+ 5 - 0
riscv/CHANGELOG.md

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

+ 7 - 0
riscv/src/register/mcause.rs

@@ -6,6 +6,13 @@ pub struct Mcause {
     bits: usize,
 }
 
+impl From<usize> for Mcause {
+    #[inline]
+    fn from(bits: usize) -> Self {
+        Self { bits }
+    }
+}
+
 /// Trap Cause
 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
 pub enum Trap {

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