mirror of
https://github.com/drasko/codezero.git
synced 2026-04-29 15:11:30 +02:00
13 lines
126 B
ArmAsm
13 lines
126 B
ArmAsm
|
|
.section .text.head
|
|
.global _start;
|
|
.type _start,function;
|
|
.align;
|
|
|
|
_start:
|
|
ldr sp, =__stack
|
|
bl __container_init
|
|
1:
|
|
b 1b
|
|
|