mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
15 lines
138 B
ArmAsm
15 lines
138 B
ArmAsm
|
.syntax unified
|
||
|
|
||
|
.section .text, "ax"
|
||
|
|
||
|
.align 5
|
||
|
.globl _start
|
||
|
.thumb_func
|
||
|
_start:
|
||
|
.rept 13
|
||
|
nop
|
||
|
.endr
|
||
|
eor r0, r1, r2
|
||
|
b.w _start
|
||
|
|