summaryrefslogtreecommitdiff
path: root/gdb/start.s
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-11-03 18:42:50 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-11-03 23:43:32 +0000
commit090bd9592df1e05e289e658c2530ae277a205318 (patch)
treef6be20462fa97d0d20a2e2b3fbe6e43e06cd1b42 /gdb/start.s
parent066d471ae6dd34eda370c5f610adaefa1029bab9 (diff)
downloadrockbox-090bd9592df1e05e289e658c2530ae277a205318.tar.gz
rockbox-090bd9592df1e05e289e658c2530ae277a205318.zip
Remove the firmware decompressor and a few more other SH-stragglers.
Change-Id: Ic568755afcccc6db1b6e791b1ed0d2588b90356f
Diffstat (limited to 'gdb/start.s')
-rw-r--r--gdb/start.s41
1 files changed, 0 insertions, 41 deletions
diff --git a/gdb/start.s b/gdb/start.s
deleted file mode 100644
index e902db7ad6..0000000000
--- a/gdb/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 Linus Nielsen Feltzing
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
24 .extern _INIT
25 .extern _vectable
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 _vectable
392: .long _stack
403: .long _INIT
41 .type _start,@function