1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - tests - GX
3   File:     sea.h
4 
5   Copyright 2003-2008 Nintendo. All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law. They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Date:: 2008-09-18#$
14   $Rev: 8573 $
15   $Author: okubata_ryoma $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef _SEA_H_
19 #define _SEA_H_
20 
21 #ifdef SDK_TWL
22 #include <twl.h>
23 #else
24 #include <nitro.h>
25 #endif
26 
27 /* Chair model */
28 extern const u32 isu1[];
29 extern const u32 isu2[];
30 
31 /* Chair size */
32 extern const u32 isu1_size;
33 extern const u32 isu2_size;
34 
35 /* Chair texture */
36 extern const u16 tex_isu1[];
37 extern const u16 tex_isu2[];
38 
39 /* Chair palette */
40 extern const u16 pal_isu1[];
41 extern const u16 pal_isu2[];
42 
43 /* Chair texture and palette size */
44 extern const u32 tex_isu1_size;
45 extern const u32 tex_isu2_size;
46 
47 extern const u32 pal_isu1_size;
48 extern const u32 pal_isu2_size;
49 
50 /* Ocean screen */
51 
52 extern const unsigned int d_natsunoumi_sscDT[32 * 32 / 2];
53 extern const unsigned int d_natsunoumi_sclDT[8 * 16];
54 extern const unsigned int d_natsunoumi_schDT[16 * 736];
55 
56 #endif /* _SEA_H_ */
57