浏览代码

Merge pull request #138 from orangecms/master

scause: add missing LoadMisaligned
Aleš Katona 1 年之前
父节点
当前提交
c884f7ea17
共有 3 个文件被更改,包括 8 次插入1 次删除
  1. 4 0
      CHANGELOG.md
  2. 1 1
      src/lib.rs
  3. 3 0
      src/register/scause.rs

+ 4 - 0
CHANGELOG.md

@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 - CI actions updated. They now use `checkout@v3` and `dtolnay/rust-toolchain`.
 
+### Fixed
+
+- Fix `scause::Exception` missing `LoadMisaligned`
+
 ## [v0.10.1] - 2023-01-18
 
 ### Fixed

+ 1 - 1
src/lib.rs

@@ -31,7 +31,7 @@
 pub mod asm;
 pub mod delay;
 pub mod interrupt;
-#[cfg(any(feature = "plic"))]
+#[cfg(feature = "plic")]
 pub mod peripheral;
 pub mod register;
 

+ 3 - 0
src/register/scause.rs

@@ -34,6 +34,7 @@ pub enum Exception {
     InstructionFault,
     IllegalInstruction,
     Breakpoint,
+    LoadMisaligned,
     LoadFault,
     StoreMisaligned,
     StoreFault,
@@ -67,6 +68,7 @@ impl Exception {
             1 => Exception::InstructionFault,
             2 => Exception::IllegalInstruction,
             3 => Exception::Breakpoint,
+            4 => Exception::LoadMisaligned,
             5 => Exception::LoadFault,
             6 => Exception::StoreMisaligned,
             7 => Exception::StoreFault,
@@ -145,6 +147,7 @@ pub unsafe fn set(cause: Trap) {
             Exception::InstructionFault => 1,
             Exception::IllegalInstruction => 2,
             Exception::Breakpoint => 3,
+            Exception::LoadMisaligned => 4,
             Exception::LoadFault => 5,
             Exception::StoreMisaligned => 6,
             Exception::StoreFault => 7,