spec
1.14 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
/*---------------------------------------------------------------------
$Id: spec,v 1.1.1.1 2002/05/02 03:27:28 blythe Exp $
File : spec
Coded by Yoshitaka Yasumoto. Jul 24, 1997.
Copyright by Nintendo, Co., Ltd. 1997.
---------------------------------------------------------------------*/
#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/gspF3DEX.fifo.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
beginseg
name "tmembuf"
flags OBJECT
address TMEMBUF_ADDRESS
include "tmembuf.o"
endseg
beginwave
name "sample"
include "code"
include "system_cfb"
include "system_rspbuf"
include "tmembuf"
endwave
/*======== End of spec ========*/