spec
957 Bytes
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
/*---------------------------------------------------------------------*
Copyright (C) 1997, Nintendo.
File spec
Coded by Yoshitaka Yasumoto. Sep 12, 1997.
Modified by
$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/gspZSort.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
beginwave
name "cube"
include "code"
include "system_cfb"
include "system_rspbuf"
endwave
/*======== End of spec ========*/