Browse Source

fix(prototyper): set mpp when delegate (#25)

Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
Woshiluo Luo 5 months ago
parent
commit
1bb010cae7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      prototyper/src/sbi/trap.rs

+ 1 - 0
prototyper/src/sbi/trap.rs

@@ -443,6 +443,7 @@ fn delegate() {
         } else {
             sstatus::set_spp(sstatus::SPP::User);
         }
+        mstatus::set_mpp(mstatus::MPP::Supervisor);
         mepc::write(stvec::read().address());
     }
 }