spec
1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*---------------------------------------------------------------------
Copyright (C) 1997, Nintendo.
File spec
Coded by Yoshitaka Yasumoto. Feb 6, 1997.
Modified by
Comments
$Id: spec,v 1.1.1.1 2002/05/02 03:27:17 blythe Exp $
---------------------------------------------------------------------*/
#include "system.h"
beginseg
name "code"
flags BOOT OBJECT
entry boot
stack bootStack + STACKSIZE
include "codesegment.o"
include "$(ROOT)/usr/lib/PR/rspboot.o"
include "$(ROOT)/usr/lib/PR/gspS2DEX.fifo.o"
include "$(ROOT)/usr/lib/PR/gspS2DEX.fifo_d.o"
endseg
beginseg
name "static"
flags OBJECT
number STATIC_SEGMENT
include "staticsegment.o"
endseg
beginseg
name "bg_rgba"
flags RAW
include "L2_TV.rgba5551"
endseg
beginseg
name "bg_ci"
flags OBJECT
number BG_SEGMENT
include "L2_TV.o"
endseg
beginseg
name "system_cfb"
flags OBJECT
address CFB_ADDRESS
include "system_cfb.o"
endseg
beginseg
name "system_rspbuf"
flags OBJECT
#ifdef RSPBUF_ADDRESS
address RSPBUF_ADDRESS
#else
after system_cfb
#endif
include "system_rspbuf.o"
endseg
beginwave
name "sample"
include "code"
include "static"
include "bg_rgba"
include "bg_ci"
include "system_cfb"
include "system_rspbuf"
endwave
/*======== End of spec ========*/