blob: 485e77c31ef80999610080a555b95e8496655d13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.set mips16
.globl __start
.type __start, @function
.ent __start
.align 4
__start:
.frame $sp,24,$31
save 24,$31
jal x+8
jal y+8
restore 24,$31
j $31
.end __start
|