Implement bisection

This commit is contained in:
Takumi Sueda
2021-03-06 00:02:19 +09:00
parent 7372479efc
commit cef69aef53
4 changed files with 29 additions and 10 deletions

View File

@@ -4,6 +4,5 @@
_start:
loop:
nop
b loop
ldr r0, =0x00000000
mov pc, r0

7
x1/spray/bottom_reset.S Normal file
View File

@@ -0,0 +1,7 @@
.text
.align 2
.global _start
_start:
ldr r0, =0x00000000
mov pc, r0