Browse Source

fix(prototyper): wrong inline asm

Woshiluo Luo 6 months ago
parent
commit
c2284f0081
1 changed files with 1 additions and 1 deletions
  1. 1 1
      prototyper/src/riscv_spec.rs

+ 1 - 1
prototyper/src/riscv_spec.rs

@@ -32,7 +32,7 @@ pub mod stimecmp {
     use core::arch::asm;
 
     pub fn set(value: u64) {
-        unsafe { asm!("csrrs zero, stimecmp, {}", in(reg) value, options(nomem)); }
+        unsafe { asm!("csrrw zero, stimecmp, {}", in(reg) value, options(nomem)); }
     }
 }