Plugin that counds files and folders on harddisk. Works on all models.
[Rockbox.git] / www / example / start.s
blobfd4669db565d444fc73b4ee94ed4131728226f7c
1 ! note: sh-1 has a "delay cycle" after every branch where you can
2 ! execute another instruction "for free".
4 .file "start.s"
5 .section .text.start
6 .extern _main
7 .extern _vectors
8 .extern _stack
9 .global _start
10 .align 2
12 _start:
13 mov.l 1f, r1
14 mov.l 3f, r3
15 mov.l 2f, r15
16 jmp @r3
17 ldc r1, vbr
18 nop
20 1: .long _vectors
21 2: .long _stack
22 3: .long _main
23 .type _start,@function