mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
12 lines
167 B
ArmAsm
12 lines
167 B
ArmAsm
.arch armv7-a
|
|
.syntax unified
|
|
.text
|
|
.globl _start
|
|
_start:
|
|
mov pc,lr
|
|
|
|
.section .text.foo,"ax",%progbits
|
|
.thumb
|
|
movw r0,#:lower16:foo-.
|
|
movt r0,#:upper16:foo-.
|