10 lines
159 B
ArmAsm
10 lines
159 B
ArmAsm
|
// See LICENSE for license details.
|
||
|
#include "encoding.h"
|
||
|
|
||
|
.section .init
|
||
|
.globl _start
|
||
|
.type _start,@function
|
||
|
|
||
|
_start:
|
||
|
la gp, _gp
|
||
|
j _start
|