mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
AES領域二つ目対応、 バッテリ切れ時に電源OFFするように修正(FINALROM時のみ)、 セキュリティOFF設定の追加(デフォルト無効)、 SDドライバのDMAを0、1に変更 git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@696 b08762b0-b915-fc4b-9d8c-17b2551a87ff
33 lines
1007 B
C
33 lines
1007 B
C
/*---------------------------------------------------------------------------*
|
|
Project: TwlFirm - include - AES
|
|
File: aes.h
|
|
|
|
Copyright 2007 Nintendo. All rights reserved.
|
|
|
|
These coded instructions, statements, and computer programs contain
|
|
proprietary information of Nintendo of America Inc. and/or Nintendo
|
|
Company Ltd., and are protected by Federal copyright law. They may
|
|
not be disclosed to third parties or copied or duplicated in any form,
|
|
in whole or in part, without the prior written consent of Nintendo.
|
|
|
|
$Date:: 2007-09-06$
|
|
$Rev$
|
|
$Author$
|
|
*---------------------------------------------------------------------------*/
|
|
#ifndef FIRM_AES_H_
|
|
#define FIRM_AES_H_
|
|
|
|
#define PXI_FIFO_TAG_DATA PXI_FIFO_TAG_USER_0
|
|
|
|
#include <twl/aes/common/types.h>
|
|
|
|
#ifdef SDK_ARM7
|
|
#include <twl/aes/ARM7/hi.h>
|
|
#include <twl/aes/ARM7/lo.h>
|
|
#include <firm/aes/ARM7/aes_init.h>
|
|
#include <firm/aes/ARM7/aes_ids.h>
|
|
#endif // !SDK_ARM7
|
|
|
|
/* FIRM_AES_H_ */
|
|
#endif
|