Sync usage with man page.
[netbsd-mini2440.git] / distrib / acorn32 / stand / BtNetBSD / !BtNetBSD / src / Banner / resutil
blob1d4d91548e750e993db22b8b1df66691f7d1638b
1 REM >resutil
2 REM $NetBSD: resutil,v 1.2 2002/02/11 19:02:38 reinoud Exp $
3 REM
4 REM Copyright (c) 1995 Mark Brinicombe
5 REM All rights reserved
6 REM
7 REM Redistribution and use in source and binary forms, with or without
8 REM modification, are permitted provided that the following conditions
9 REM are met:
10 REM 1. Redistributions of source code must retain the above copyright
11 REM    notice, this list of conditions and the following disclaimer.
12 REM 2. Redistributions in binary form must reproduce the above copyright
13 REM    notice, this list of conditions and the following disclaimer in the
14 REM    documentation and/or other materials provided with the distribution.
15 REM 3. All advertising materials mentioning features or use of this software
16 REM    must display the following acknowledgement:
17 REM        This product includes software developed by Mark Brinicombe.
18 REM 4. The name of the company nor the name of the author may be used to
19 REM    endorse or promote products derived from this software without specific
20 REM    prior written permission.
21 REM
22 REM THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 REM IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 REM OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 REM IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 REM INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 REM BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 REM OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 REM ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 REM OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
31 REM THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
32 REM DAMAGE.
33 REM
34 REM RiscBSD kernel project
35 REM
36 REM banner
37 REM
38 REM Assembly code for resource handling utils.
39 REM
40 REM Created      : 10/08/93
41 REM Last updated : 12/07/95
42 REM
44 REM initresources
45 REM deinitresources
48 DEF PROCresourceutils
50 LOCAL start%
51 start% = P%
53 [ opt pass%
55 .initresources
56 stmfd r13!, {r0, r14}
57 adr r0, resourcedata
58 swi "XResourceFS_RegisterFiles"
59 ldmfd r13!, {r0, pc}
61 .deinitresources
62 stmfd r13!, {r0, r14}
63 adr r0, resourcedata
64 swi "XResourceFS_DeregisterFiles"
65 ldmfd r13!, {r0, pc}
67 .resourceservice
68 stmfd r13!, {r0-r1, r14}
69 adr r0, resourcedata
70 mov r14, pc
71 mov pc, r2
72 ldmfd r13!, {r0-r1, pc}
74 .resourcedata
76 IF (pass% AND %10) <> 0 THEN
77   PRINT "resourceutils";TAB(25);"Start : ";~start%;TAB(40);"Length : ";~P%-start%
78 ENDIF
79 ENDPROC
82 DEF PROCresourcefile(filename$, rfilename$)
84 LOCAL start%, file, load%, exec%, length%, attrib%
86 start% = P%
88 IF (filename$ = "") THEN
89   [ OPT pass%
90   equd &00000000
91   ]
92   ENDPROC
93 ENDIF
95 SYS "OS_File", 5, filename$ TO ,,load%, exec%, length%, attrib%
97 file = O%
98 [ opt pass%
99 equd &00000000
100 equd load%
101 equd exec%
102 equd length%
103 equd attrib% \AND &7f
104 equs rfilename$
105 equb &00
106 align
107 equd length% + 4
110 SYS "OS_File", 255, filename$, O%, 0
112 P% += length%
113 O% += length%
114 [ opt pass%
115 align
118 !file = (O% - file)
120 IF (pass% AND %10) <> 0 THEN
121   PRINT filename$;TAB(25);"Start : ";~start%;TAB(40);"Length : ";~P%-start%
122 ENDIF
123 ENDPROC