1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - WXC - demos - simple-1
3   File:     font.h
4 
5   Copyright 2005-2009 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:: 2007-11-15#$
14   $Rev: 2414 $
15   $Author: hatamoto_minoru $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef	FONT_H_
19 #define	FONT_H_
20 
21 #ifdef	__cplusplus
22 extern "C" {
23 #endif
24 
25 /*===========================================================================*/
26 
27 #include	<nitro/types.h>
28 
29 extern const u32 d_CharData[8 * 256];
30 extern const u32 d_PaletteData[8 * 16];
31 
32 enum
33 {
34     FONT_BLACK = 0,
35     FONT_RED,
36     FONT_GREEN,
37     FONT_BLUE,
38     FONT_YELLOW,
39     FONT_PUTPLE,
40     FONT_LIGHT_BLUE,
41     FONT_DARK_RED,
42     FONT_DARK_GREEN,
43     FONT_DARK_BLUE,
44     FONT_DARK_YELLOW,
45     FONT_DARK_PURPLE,
46     FONT_DARK_LIGHT_BLUE,
47     FONT_GRAY,
48     FONT_DARK_GRAY,
49     FONT_WHITE
50 };
51 
52 /*===========================================================================*/
53 
54 #ifdef	__cplusplus
55 }          /* extern "C" */
56 #endif
57 
58 #endif /* FONT_H_ */
59 
60 /*---------------------------------------------------------------------------*
61   End of file
62  *---------------------------------------------------------------------------*/
63