Explorar el Código

Merge pull request #116 from onsdagens/global_asm

Temporary fix for OOR branch
Román Cárdenas Rodríguez hace 1 año
padre
commit
8a54bb1cea
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      riscv-rt/src/asm.rs

+ 5 - 1
riscv-rt/src/asm.rs

@@ -92,7 +92,11 @@ _abs_start:
     "csrr t2, mhartid",
     "lui t0, %hi(_max_hart_id)
     add t0, t0, %lo(_max_hart_id)
-    bgtu t2, t0, abort
+    // bgtu t2, t0, abort
+    bleu t2, t0, not_abort
+    la t0, abort
+    jr t0
+    not_abort:
 
     // Allocate stacks
     la sp, _stack_start