浏览代码

fix(prototyper): fixed the incorrect bit width of the time register

guttatus 6 月之前
父节点
当前提交
723d1c9170
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      prototyper/src/clint.rs
  2. 1 1
      prototyper/src/trap.rs

+ 1 - 1
prototyper/src/clint.rs

@@ -69,7 +69,7 @@ impl<'a> ClintDevice<'a> {
 impl<'a> ClintDevice<'a> {
 impl<'a> ClintDevice<'a> {
     #[inline]
     #[inline]
     pub fn get_time(&self) -> usize {
     pub fn get_time(&self) -> usize {
-        unsafe { (*self.clint.load(Relaxed)).read_mtime() as u32 as usize }
+        unsafe { (*self.clint.load(Relaxed)).read_mtime() as usize }
     }
     }
 
 
     #[inline]
     #[inline]

+ 1 - 1
prototyper/src/trap.rs

@@ -297,7 +297,7 @@ pub extern "C" fn fast_handler(
         // SBI call
         // SBI call
         T::Exception(E::SupervisorEnvCall) => {
         T::Exception(E::SupervisorEnvCall) => {
             use sbi_spec::{base, hsm, legacy};
             use sbi_spec::{base, hsm, legacy};
-            let mut ret = unsafe { SBI.assume_init_mut() }.handle_ecall(
+            let mut ret = unsafe { SBI.assume_init_ref() }.handle_ecall(
                 a7,
                 a7,
                 a6,
                 a6,
                 [ctx.a0(), a1, a2, a3, a4, a5],
                 [ctx.a0(), a1, a2, a3, a4, a5],