Implement bisection

This commit is contained in:
Takumi Sueda
2021-03-06 17:38:28 +09:00
parent 7372479efc
commit cef69aef53
4 changed files with 29 additions and 10 deletions
+1 -2
View File
@@ -4,6 +4,5 @@
_start:
loop:
nop
b loop
ldr r0, =0x00000000
mov pc, r0
+7
View File
@@ -0,0 +1,7 @@
.text
.align 2
.global _start
_start:
ldr r0, =0x00000000
mov pc, r0