Bläddra i källkod

Merge pull request #12 from woshiluo/patch-2

fix(prototyper): wrong inline asm
Luo Jia / Zhouqi Jiang 6 månader sedan
förälder
incheckning
98d3153467
1 ändrade filer med 1 tillägg och 1 borttagningar
  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)); }
     }
 }