1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - AES - include
3   File:     aes.h
4 
5   Copyright 2007-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 #ifndef	TWL_AES_H_
18 #define	TWL_AES_H_
19 
20 #ifdef	__cplusplus
21 extern "C" {
22 #endif
23 
24 /*===========================================================================*/
25 
26 #include	<twl/aes/common/types.h>
27 
28 #ifdef SDK_ARM9
29 #include	<twl/aes/ARM9/aes_inline.h>
30 #include	<twl/aes/ARM9/util.h>
31 #else   // ifdef SDK_ARM9
32 #include	<twl/aes/ARM7/hi.h>
33 #endif  // ifdef SDK_ARM9 else
34 
35 /*===========================================================================*/
36 
37 #ifdef	__cplusplus
38 }          /* extern "C" */
39 #endif
40 
41 #endif /* TWL_AES_H_ */
42 
43 /*---------------------------------------------------------------------------*
44   End of file
45  *---------------------------------------------------------------------------*/
46