mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +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
|
|
|