浏览代码

fix(prototyper): set SCOUNTEREN to allow

Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
Woshiluo Luo 3 月之前
父节点
当前提交
4989038d79
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      prototyper/src/main.rs

+ 1 - 0
prototyper/src/main.rs

@@ -89,6 +89,7 @@ extern "C" fn rust_main(_hart_id: usize, opaque: usize, nonstandard_a2: usize) {
         asm!("csrw mideleg,    {}", in(reg) !0);
         asm!("csrw medeleg,    {}", in(reg) !0);
         asm!("csrw mcounteren, {}", in(reg) !0);
+        asm!("csrw scounteren, {}", in(reg) !0);
         use riscv::register::{medeleg, mtvec};
         // Keep supervisor environment calls and illegal instructions in M-mode.
         medeleg::clear_supervisor_env_call();