?? start.s
字號:
/*
* start.S: diag start code
*
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
* Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
.ident "$Id: start.S,v 1.3 2001/11/04 23:19:13 erikm Exp $"
.text
.globl _start
_start:
#ifdef H3600
/* this is a hack to be able to chain load diag from
* bootldr. bootldr checks if it can find the linux zImage
* magic value at the ninth word of an image, so we just put
* it there.
*/
b do_bss
.org (_start + 9 * 4)
.word 0x016f2818
do_bss:
#endif
/* clear the BSS section */
ldr r1, bss_start
ldr r0, bss_end
sub r0, r0, r1
/* r1 = start address */
/* r0 = #number of bytes */
mov r2, #0
clear_bss:
stmia r1!, {r2}
subs r0, r0, #4
bne clear_bss
/* setup the stack pointer */
ldr r0, stack_end
sub sp, r0, #4
loop:
bl main
/* if main ever returns we just call it again */
b _start
bss_start: .word __bss_start
bss_end: .word __bss_end
stack_end: .word __stack_end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -