2013-04-06 16:48:33 +02:00

89 lines
2.8 KiB
ArmAsm

/* $NetBSD: rmheader.S,v 1.2 2002/06/13 22:30:22 bjh21 Exp $ */
/*-
* Copyright (c) 2001 Ben Harris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Relocatable module header for boot26.
*/
#include <riscoscalls.h>
rmbase:
b rmstart /* Start code */
.word 0 /* Initialisation code */
.word 0 /* Finalisation code */
.word 0 /* Service call handler */
.word rmtitle - rmbase /* Title string */
.word rmhelp - rmbase /* Help string */
.word rmcmdtbl - rmbase /* Help and command keyword table */
rmtitle:
.asciz "boot26"
.align
rmstart:
/*
* This entry point is called when we're started up as an application,
* so we're allowed to use application workspace. This is good,
* because most of our code is linked to run at 0x8000.
*/
mov r0, #0x8000
adr r1, rmbase
ldr r2, Lsize
Lcopyloop:
ldr r3, [r1], #4
str r3, [r0], #4
subs r2, r2, #4
bgt Lcopyloop
ldr r0, Lstart
mov pc, r0
Lsize:
.word end - rmbase
Lstart:
.word _start
rmcmdtbl:
.asciz "boot26" /* Command text */
.align
.word rmcmd_boot26 - rmbase /* Command code */
.byte 0x00 /* Min 0 parameters */
.byte 0x00 /* No GSTransed parameters */
.byte 0xff /* Max 255 parameters */
.byte 0x00 /* Normal command */
.word 0 /* No syntax message */
.word 0 /* No help message */
rmcmd_boot26:
/* We're called with r0 -> command tail. */
stmfd r13!, {r14}
mov r2, r0
mov r0, #2
adr r1, rmtitle
swi XOS_Module
ldmfd r13!, {pc}