mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
(変更者:akabane_jumpei)公開する必要のないヘッダーを移動
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@266 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
4b06b2a2db
commit
8f0f7ed657
@ -27,8 +27,9 @@ TWL_PROC = ARM7
|
|||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
SRCDIR = ./src
|
SRCDIR = ./src
|
||||||
|
INCDIR = ./include
|
||||||
|
|
||||||
SRCS = blowfish.c Card.c ds_blowfish_table.c dsCardType1.c dsCardType2.c
|
SRCS = blowfish.c hotsw.c ds_blowfish_table.c dsCardType1.c dsCardType2.c
|
||||||
|
|
||||||
TARGET_LIB = libcardboot_sp$(TWL_LIBSUFFIX).a
|
TARGET_LIB = libcardboot_sp$(TWL_LIBSUFFIX).a
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include <twl/types.h>
|
#include <twl/types.h>
|
||||||
#include "hotsw.h"
|
#include <sysmenu/hotsw.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -11,7 +11,7 @@ extern "C" {
|
|||||||
|
|
||||||
|
|
||||||
#include <twl.h>
|
#include <twl.h>
|
||||||
#include "hotsw.h"
|
#include <sysmenu/hotsw.h>
|
||||||
|
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
// Function Describe
|
// Function Describe
|
||||||
@ -11,7 +11,7 @@ extern "C" {
|
|||||||
|
|
||||||
|
|
||||||
#include <twl.h>
|
#include <twl.h>
|
||||||
#include "hotsw.h"
|
#include <sysmenu/hotsw.h>
|
||||||
|
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
// Function Describe
|
// Function Describe
|
||||||
@ -11,7 +11,7 @@
|
|||||||
in whole or in part, without the prior written consent of Nintendo.
|
in whole or in part, without the prior written consent of Nintendo.
|
||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
#include <twl.h>
|
#include <twl.h>
|
||||||
#include <sysmenu.h>
|
#include <blowfish.h>
|
||||||
|
|
||||||
#define MAXKEYBYTES 56 /* 448 bits */
|
#define MAXKEYBYTES 56 /* 448 bits */
|
||||||
#define N 16
|
#define N 16
|
||||||
|
|||||||
@ -4,7 +4,8 @@
|
|||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include <twl.h>
|
#include <twl.h>
|
||||||
#include <sysmenu.h>
|
#include <blowfish.h>
|
||||||
|
#include <dsCardType1.h>
|
||||||
|
|
||||||
// Define data --------------------------------------------------------------
|
// Define data --------------------------------------------------------------
|
||||||
#define PAGE_SIZE 512
|
#define PAGE_SIZE 512
|
||||||
|
|||||||
@ -4,7 +4,8 @@
|
|||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include <twl.h>
|
#include <twl.h>
|
||||||
#include <sysmenu.h>
|
#include <blowfish.h>
|
||||||
|
#include <dsCardType2.h>
|
||||||
|
|
||||||
// Define Data --------------------------------------------------------------
|
// Define Data --------------------------------------------------------------
|
||||||
#define SECURE_SEGMENT_NUM 4
|
#define SECURE_SEGMENT_NUM 4
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
not be disclosed to third parties or copied or duplicated in any form,
|
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.
|
in whole or in part, without the prior written consent of Nintendo.
|
||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
#include <sysmenu.h>
|
#include <sysmenu/hotsw.h>
|
||||||
|
|
||||||
|
|
||||||
const BLOWFISH_CTX GCDi_BlowfishInitTableDS = {
|
const BLOWFISH_CTX GCDi_BlowfishInitTableDS = {
|
||||||
|
|||||||
@ -17,6 +17,9 @@
|
|||||||
|
|
||||||
#include <nitro/card/types.h>
|
#include <nitro/card/types.h>
|
||||||
#include <sysmenu.h>
|
#include <sysmenu.h>
|
||||||
|
#include <blowfish.h>
|
||||||
|
#include <dsCardType1.h>
|
||||||
|
#include <dsCardType2.h>
|
||||||
|
|
||||||
// define -------------------------------------------------------------------
|
// define -------------------------------------------------------------------
|
||||||
#define STACK_SIZE 1024 // スタックサイズ
|
#define STACK_SIZE 1024 // スタックサイズ
|
||||||
@ -18,10 +18,7 @@
|
|||||||
#ifndef SYSM_HOTSW_H_
|
#ifndef SYSM_HOTSW_H_
|
||||||
#define SYSM_HOTSW_H_
|
#define SYSM_HOTSW_H_
|
||||||
|
|
||||||
#include <sysmenu/hotsw/common/blowfish.h>
|
|
||||||
#include <sysmenu/hotsw/common/hotsw.h>
|
#include <sysmenu/hotsw/common/hotsw.h>
|
||||||
#include <sysmenu/hotsw/common/dsCardType1.h>
|
|
||||||
#include <sysmenu/hotsw/common/dsCardType2.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user