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