summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-27 11:53:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-27 11:53:12 +0000
commit47c95957ef8ae8b0cc8953540f52a534490b6ff5 (patch)
treeeaa3069db642a47cb9e338ea960a079f12b06b25
parentf6951bc5cc5efc5753710bd34456ff79840147e9 (diff)
downloadrockbox-47c95957ef8ae8b0cc8953540f52a534490b6ff5.tar.gz
rockbox-47c95957ef8ae8b0cc8953540f52a534490b6ff5.zip
obsolete
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@736 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/start.s41
1 files changed, 0 insertions, 41 deletions
diff --git a/firmware/start.s b/firmware/start.s
deleted file mode 100644
index fdc86b2de1..0000000000
--- a/firmware/start.s
+++ /dev/null
@@ -1,41 +0,0 @@
1!----------------------------------------------------------------------------
2! __________ __ ___.
3! Open \______ \ ____ ____ | | _\_ |__ _______ ___
4! Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5! Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6! Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7! \/ \/ \/ \/ \/
8! $Id$
9!
10! Copyright (C) 2002 by Björn Stenberg
11!
12! All files in this archive are subject to the GNU General Public License.
13! See the file COPYING in the source tree root for full license agreement.
14!
15! This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16! KIND, either express or implied.
17!----------------------------------------------------------------------------
18!
19! note: sh-1 has a "delay cycle" after every branch where you can
20! execute another instruction "for free".
21
22 .file "start.s"
23 .section .text.start
24 .extern _main
25 .extern _vectors
26 .extern _stack
27 .global _start
28 .align 2
29
30_start:
31 mov.l 1f, r1
32 mov.l 3f, r3
33 mov.l 2f, r15
34 jmp @r3
35 ldc r1, vbr
36 nop
37
381: .long _vectors
392: .long _stack
403: .long _main
41 .type _start,@function