mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
・ノーマルモード関数統一 git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@795 b08762b0-b915-fc4b-9d8c-17b2551a87ff
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/*---------------------------------------------------------------------------*
|
|
Project: TwlSDK
|
|
File: romEmulation.h
|
|
*---------------------------------------------------------------------------*/
|
|
#ifndef __HOTSW_ROM_EMULATION_H__
|
|
#define __HOTSW_ROM_EMULATION_H__
|
|
|
|
#include <twl.h>
|
|
#include <hotswTypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// ===========================================================================
|
|
// Function Describe
|
|
// ===========================================================================
|
|
// ■ セキュアモードのコマンド ■
|
|
// Rom EmulationのセキュアモードのID読み込み
|
|
HotSwState ReadIDSecure_ROMEMU(CardBootData *cbd);
|
|
|
|
// Rom EmulationのセキュアモードのSecure Segment(16Kbyte)読み込み
|
|
HotSwState ReadSegSecure_ROMEMU(CardBootData *cbd);
|
|
|
|
// Rom EmulationのセキュアモードのPNジェネレータON
|
|
HotSwState SwitchONPNGSecure_ROMEMU(CardBootData *cbd);
|
|
|
|
// Rom EmulationのセキュアモードのPNジェネレータOFF
|
|
HotSwState SwitchOFFPNGSecure_ROMEMU(CardBootData *cbd);
|
|
|
|
// Rom Emulationのセキュアモードのモード変更
|
|
HotSwState ChangeModeSecure_ROMEMU(CardBootData *cbd);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif // __HOTSW_ROM_EMULATION_H__
|