Skip to content

Commit a949316

Browse files
committed
testing oor branch
1 parent 11049a4 commit a949316

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

riscv-rt/src/asm.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,11 @@ _abs_start:
9292
"csrr t2, mhartid",
9393
"lui t0, %hi(_max_hart_id)
9494
add t0, t0, %lo(_max_hart_id)
95-
bgtu t2, t0, abort
95+
// bgtu t2, t0, abort
96+
bleu t2, t0, not_abort
97+
la t0, abort
98+
jr t0
99+
not_abort:
96100
97101
// Allocate stacks
98102
la sp, _stack_start

0 commit comments

Comments
 (0)