Implement memory spray

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