Explorar o código

Merge pull request #116 from onsdagens/global_asm

Temporary fix for OOR branch
Román Cárdenas Rodríguez hai 1 ano
pai
achega
8a54bb1cea
Modificáronse 1 ficheiros con 5 adicións e 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