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@613 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
1b321cadab
commit
f4adc0df92
54
build/tools/attach_dummyromheader/Makefile
Normal file
54
build/tools/attach_dummyromheader/Makefile
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#! make -f
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Project: TwlSDK - dummyromheader -
|
||||||
|
# File: Makefile
|
||||||
|
#
|
||||||
|
# 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::
|
||||||
|
# $Rev:
|
||||||
|
# $Author:
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
include $(TWLSDK_ROOT)/build/buildtools/commondefs
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
TARGETS = attach_dummyromheader.exe
|
||||||
|
|
||||||
|
|
||||||
|
SOURCES = attach_dummyromheader.c
|
||||||
|
|
||||||
|
OBJECTS = $(SOURCES:.c=.o)
|
||||||
|
|
||||||
|
|
||||||
|
LDIRT_CLEAN = $(OBJECTS) $(TARGETS)
|
||||||
|
INSTALL_TARGETS = $(TARGETS)
|
||||||
|
INSTALL_DIR = $(TWL_IPL_RED_ROOT)/tools/bin
|
||||||
|
|
||||||
|
|
||||||
|
include $(TWLSDK_ROOT)/build/buildtools/twl/modulerules.x86
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# build
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
do-build: $(TARGETS)
|
||||||
|
|
||||||
|
$(TARGETS): $(OBJECTS)
|
||||||
|
$(CC_X86) $+ -o $@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#===== End of Makefile =====
|
||||||
202
build/tools/attach_dummyromheader/attach_dummyromheader.c
Normal file
202
build/tools/attach_dummyromheader/attach_dummyromheader.c
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <getopt.h>
|
||||||
|
#include "misc.h"
|
||||||
|
#include <twl/os/common/format_rom.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
attach_dummyromheader.exe -s -l -i nwm_firm.bin -c WFW0 -o m.srl
|
||||||
|
maketad m.srl -s
|
||||||
|
*/
|
||||||
|
|
||||||
|
static ROM_Header rom_header;
|
||||||
|
|
||||||
|
#define FILE_READ_BUFFER_LENGTH 0x1000
|
||||||
|
|
||||||
|
/* maketadのソースから引用 */
|
||||||
|
#define TAD_BOOT_IDX 0
|
||||||
|
#define TITLE_NAME_OFFSET 0x0
|
||||||
|
#define PUBLISHER_CODE 0x3
|
||||||
|
|
||||||
|
#define CHANNEL_SYSTEM_BIT 0x1
|
||||||
|
#define CHANNEL_SHOW_BIT 0x2
|
||||||
|
#define CHANNEL_CARD_BIT 0x4
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
char *binFile = NULL;
|
||||||
|
char *srlFile = NULL;
|
||||||
|
char *g_code = NULL;
|
||||||
|
FILE *bin_fp;
|
||||||
|
FILE *srl_fp;
|
||||||
|
int n;
|
||||||
|
int read_size;
|
||||||
|
BOOL isSystem = FALSE;
|
||||||
|
BOOL isLaunch = TRUE;
|
||||||
|
unsigned char file_read_buffer[FILE_READ_BUFFER_LENGTH];
|
||||||
|
|
||||||
|
while ((n = getopt(argc, argv, "hiocsl")) != -1) {
|
||||||
|
switch (n) {
|
||||||
|
case 'h':
|
||||||
|
printf("Usage:\n"
|
||||||
|
" %s -s -l -c -i inputfile -o outputfile\n"
|
||||||
|
" -s (Systemfile) \n"
|
||||||
|
" -l (Not Launch) \n"
|
||||||
|
" -c XXXX ( GameCode )\n"
|
||||||
|
" -i XXXX ( input file )\n"
|
||||||
|
" -o XXXX ( output file )\n\n",
|
||||||
|
argv[0]);
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
case 'i':
|
||||||
|
binFile = strdup( argv[optind] );
|
||||||
|
printf("input file = %s\n", binFile);
|
||||||
|
break;
|
||||||
|
case 'o':
|
||||||
|
srlFile = strdup( argv[optind] );
|
||||||
|
printf("srl file = %s\n", srlFile);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'c':
|
||||||
|
g_code = strdup( argv[optind] );
|
||||||
|
printf("game code = %s\n", g_code);
|
||||||
|
if( 4 != strlen(g_code) ) {
|
||||||
|
fprintf(stderr,"Error: invalid game code %s\n",g_code);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 's':
|
||||||
|
isSystem = TRUE;
|
||||||
|
printf("system file\n");
|
||||||
|
break;
|
||||||
|
case 'l':
|
||||||
|
isLaunch = FALSE;
|
||||||
|
printf("Not Launch file\n");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if( binFile && srlFile ) {
|
||||||
|
if( NULL == (bin_fp = fopen(binFile, "rb")) ) {
|
||||||
|
fprintf(stderr,"Error:binFile open error %s\n",binFile);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if( NULL == (srl_fp = fopen(srlFile, "wb+")) ) {
|
||||||
|
fprintf(stderr,"Error:srlFile open error %s\n",srlFile);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fprintf(stderr,"Error:not specify binFile or srlFile\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ROM Header情報生成 */
|
||||||
|
memset((void *)&rom_header, 0 , sizeof(ROM_Header));
|
||||||
|
|
||||||
|
// strncpy((void *)&rom_header.s.title_name, "WLANFIRMWARE", TITLE_NAME_MAX);
|
||||||
|
strncpy((void *)&rom_header.s.title_name, g_code, TITLE_NAME_MAX);
|
||||||
|
|
||||||
|
// strncpy((void *)&rom_header.s.game_code,"WFW0",GAME_CODE_MAX); // Game code
|
||||||
|
strncpy((void *)&rom_header.s.game_code, g_code ,GAME_CODE_MAX); // Game code
|
||||||
|
|
||||||
|
rom_header.s.maker_code[0] = 0; // Maker code
|
||||||
|
rom_header.s.maker_code[1] = 0; // Maker code
|
||||||
|
rom_header.s.platform_code = 0x03; /* Platform code bit0: not support NTR, bit1: support TWL
|
||||||
|
( NTR_only=0x00, NTR/TWL=0x03, TWL_only=0x02 ) */
|
||||||
|
|
||||||
|
// rom_header.s.rom_type;
|
||||||
|
// rom_header.s.rom_size; /* Rom size (2のrom_size乗 Mbit: ex. 128Mbitのときrom_size = 7) */
|
||||||
|
|
||||||
|
// rom_header.s.enable_signature:1; // enable ROM Header signature
|
||||||
|
// rom_header.s.enable_aes:1; // enable AES encryption
|
||||||
|
// rom_header.s.developer_encrypt:1; // 開発用セキュリティがかかっている場合に"1"。製品版では"0"
|
||||||
|
|
||||||
|
// u32 arm7_scfg_ext; // SCFG-EXT
|
||||||
|
// u8 arm7_scfg_clk; // SCFG-CLK
|
||||||
|
|
||||||
|
|
||||||
|
// 0x1BF - TWL expansion flags
|
||||||
|
// u8 codec_mode:1; // 0:NTR mode, 1:TWL mode // undeveloped
|
||||||
|
// u8 otherParentalControls:1; // 1: Enable OtherParentalControls
|
||||||
|
// u8 saveBannerFile:1; // 1: Enable SaveBannerFile
|
||||||
|
// u8 wifiConnection:1; // 1: Use WiFiConnection
|
||||||
|
rom_header.s.codec_mode = 1; // 0:NTR mode, 1:TWL mode // undeveloped
|
||||||
|
rom_header.s.otherParentalControls = 0; // 1: Enable OtherParentalControls
|
||||||
|
rom_header.s.saveBannerFile = 0; // 1: Enable SaveBannerFile
|
||||||
|
rom_header.s.wifiConnection = 1; // 1: Use WiFiConnection
|
||||||
|
|
||||||
|
|
||||||
|
// u8 titleID_Lo[ 4 ];
|
||||||
|
// u32 titleID_Hi;
|
||||||
|
|
||||||
|
rom_header.s.titleID_Lo[ 3 ] = *(g_code);
|
||||||
|
rom_header.s.titleID_Lo[ 2 ] = *(g_code+1);
|
||||||
|
rom_header.s.titleID_Lo[ 1 ] = *(g_code+2);
|
||||||
|
rom_header.s.titleID_Lo[ 0 ] = *(g_code+3);
|
||||||
|
|
||||||
|
/*
|
||||||
|
ビットフィールド:
|
||||||
|
[0]: AppType ( 0: User, 1: System )
|
||||||
|
[1]: Launch ( 0: Launch, 1: Not launch )
|
||||||
|
[2]: Media ( 0: GameCard, 1: NAND )
|
||||||
|
[3-15]: rsv.
|
||||||
|
[16-31]: PublisherCode( 2:Broadon, 3:Nintendo)
|
||||||
|
*/
|
||||||
|
|
||||||
|
rom_header.s.titleID_Hi = ( 3 /* Nintendo */ << 16) | 4 | (isLaunch? 2:0) | (isSystem? 1:0);
|
||||||
|
|
||||||
|
|
||||||
|
// 0x02f0 - 0x0300 Parental Controls Rating Info
|
||||||
|
// u8 ParentalControlsRatingInfo[ 0x10 ];
|
||||||
|
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x0 ] = 0;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x1 ] = 1;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x2 ] = 2;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x3 ] = 3;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x4 ] = 4;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x5 ] = 5;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x6 ] = 6;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x7 ] = 7;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x8 ] = 8;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0x9 ] = 9;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xa ] = 0xa;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xb ] = 0xb;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xc ] = 0xc;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xd ] = 0xd;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xe ] = 0xe;
|
||||||
|
rom_header.s.ParentalControlsRatingInfo[ 0xf ] = 0xf;
|
||||||
|
|
||||||
|
/* SRLファイルの書き出し */
|
||||||
|
if(1 != fwrite((void *)&rom_header, sizeof(ROM_Header), 1, srl_fp) ) {
|
||||||
|
fprintf(stderr,"Error:file write error(ROM_Header)\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
while( 1 ) {
|
||||||
|
read_size = fread((void *)file_read_buffer, 1, FILE_READ_BUFFER_LENGTH, bin_fp);
|
||||||
|
if( read_size ) {
|
||||||
|
if( 1 != fwrite((void *)&file_read_buffer, read_size, 1, srl_fp) ) {
|
||||||
|
fprintf(stderr,"Error:file write error(bin file)\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose(bin_fp);
|
||||||
|
fclose(srl_fp);
|
||||||
|
|
||||||
|
printf("success!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
290
build/tools/attach_dummyromheader/misc.h
Normal file
290
build/tools/attach_dummyromheader/misc.h
Normal file
@ -0,0 +1,290 @@
|
|||||||
|
#ifndef MISC_H_
|
||||||
|
#define MISC_H_
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
FALSE = 0,
|
||||||
|
TRUE = 1
|
||||||
|
}
|
||||||
|
BOOL;
|
||||||
|
|
||||||
|
typedef unsigned char u8;
|
||||||
|
typedef unsigned short int u16;
|
||||||
|
typedef unsigned long int u32;
|
||||||
|
typedef unsigned long long u64;
|
||||||
|
|
||||||
|
typedef signed char s8;
|
||||||
|
typedef signed short int s16;
|
||||||
|
typedef signed long int s32;
|
||||||
|
typedef signed long long s64;
|
||||||
|
|
||||||
|
#endif //MISC_H_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
typedef struct ROM_Header_Short
|
||||||
|
{
|
||||||
|
//==========================================================
|
||||||
|
//
|
||||||
|
// NTR/TWL common
|
||||||
|
//
|
||||||
|
//==========================================================
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x000 System Reserved
|
||||||
|
//
|
||||||
|
char title_name[TITLE_NAME_MAX]; // Soft title name
|
||||||
|
char game_code[GAME_CODE_MAX]; // Game code
|
||||||
|
char maker_code[MAKER_CODE_MAX]; // Maker code
|
||||||
|
char platform_code; // Platform code bit0: not support NTR, bit1: support TWL ( NTR_only=0x00, NTR/TWL=0x03, TWL_only=0x02 )
|
||||||
|
u8 rom_type; // Rom type
|
||||||
|
u8 rom_size; // Rom size (2のrom_size乗 Mbit: ex. 128Mbitのときrom_size = 7)
|
||||||
|
|
||||||
|
u8 reserved_A[7]; // System Reserved A ( Set ALL 0 )
|
||||||
|
|
||||||
|
u8 enable_signature:1; // enable ROM Header signature
|
||||||
|
u8 enable_aes:1; // enable AES encryption
|
||||||
|
u8 developer_encrypt:1; // 開発用セキュリティがかかっている場合に"1"。製品版では"0"
|
||||||
|
u8: 5;
|
||||||
|
|
||||||
|
u8: 6;
|
||||||
|
u8 for_korea:1; // For Korea
|
||||||
|
u8 for_china:1; // For China
|
||||||
|
|
||||||
|
u8 rom_version; // Rom version
|
||||||
|
|
||||||
|
u8 comp_arm9_boot_area:1; // Compress arm9 boot area
|
||||||
|
u8 comp_arm7_boot_area:1; // Compress arm7 boot area
|
||||||
|
u8 inspect_card:1; // Show inspect card
|
||||||
|
u8 disable_clear_memory_pad:1; // for Debugger
|
||||||
|
u8 enable_twl_rom_cache_read:1; // Enable TWL ROM cacheRead command
|
||||||
|
u8: 1;
|
||||||
|
u8 warning_no_spec_rom_speed:1;// Warning not to specify rom speed
|
||||||
|
u8 disable_detect_pull_out:1; //
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x020 for Static modules (Section:B)
|
||||||
|
//
|
||||||
|
// ARM9
|
||||||
|
u32 main_rom_offset; // ROM offset
|
||||||
|
void *main_entry_address; // Entry point
|
||||||
|
void *main_ram_address; // RAM address
|
||||||
|
u32 main_size; // Module size
|
||||||
|
|
||||||
|
// ARM7
|
||||||
|
u32 sub_rom_offset; // ROM offset
|
||||||
|
void *sub_entry_address; // Entry point
|
||||||
|
void *sub_ram_address; // RAM address
|
||||||
|
u32 sub_size; // Module size
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x040 for File Name Table[FNT] (Section:C)
|
||||||
|
//
|
||||||
|
struct ROM_FNT *fnt_offset; // ROM offset
|
||||||
|
u32 fnt_size; // Table size
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x048 for File Allocation Table[FAT] (Section:E)
|
||||||
|
//
|
||||||
|
struct ROM_FAT *fat_offset; // ROM offset
|
||||||
|
u32 fat_size; // Table size
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x050 for Overlay Tables[OVT] (Section:D)
|
||||||
|
//
|
||||||
|
// ARM9
|
||||||
|
struct ROM_OVT *main_ovt_offset; // ROM offset
|
||||||
|
u32 main_ovt_size; // Table size
|
||||||
|
|
||||||
|
// ARM7
|
||||||
|
struct ROM_OVT *sub_ovt_offset; // ROM offset
|
||||||
|
u32 sub_ovt_size; // Table size
|
||||||
|
|
||||||
|
// 0x060 for ROM control parameter (Section:F)
|
||||||
|
u32 game_cmd_param; // Game command parameter
|
||||||
|
u32 secure_cmd_param; // Secure command parameter
|
||||||
|
|
||||||
|
u32 banner_offset; // Banner ROM offset
|
||||||
|
|
||||||
|
u16 secure_area_crc16; // Secure area CRC-16
|
||||||
|
u16 secure_cmd_latency; // Secure command latency ((param+2)*256 system cycles)
|
||||||
|
|
||||||
|
// since NITRO-SDK 2.0PR4
|
||||||
|
void *main_autoload_done; // ARM9 autoload done callback address (debug purpose)
|
||||||
|
void *sub_autoload_done; // ARM7 autoload done callback address (debug purpose)
|
||||||
|
|
||||||
|
u8 ctrl_reserved_B[8]; // Ctrl Reserved B (Set 0)
|
||||||
|
|
||||||
|
// since NITRO-SDK 2.0PR6
|
||||||
|
u32 rom_valid_size; // ROM Original Size
|
||||||
|
u32 rom_header_size; // ROM Header size
|
||||||
|
u32 main_module_param_offset; // Offset for table of ARM9 module parameters
|
||||||
|
u32 sub_module_param_offset; // Offset for table of ARM7 module parameters
|
||||||
|
|
||||||
|
// 0x090 - 0x0C0 System Reserved
|
||||||
|
u16 twl_card_normal_area_rom_offset; // undeveloped
|
||||||
|
u16 twl_card_keytable_area_rom_offset; // undeveloped
|
||||||
|
u16 nand_card_dl_area_rom_offset; // undeveloped
|
||||||
|
u16 nand_card_bk_area_rom_offset; // undeveloped
|
||||||
|
u8 nand_card_flag; // undeveloped
|
||||||
|
u8 reserved_B[39];
|
||||||
|
|
||||||
|
// 0x0C0 for NINTENDO logo data
|
||||||
|
u8 nintendo_logo[ NINTENDO_LOGO_DATA_LENGTH ]; // NINTENDO logo data
|
||||||
|
u16 nintendo_logo_crc16; // CRC-16
|
||||||
|
|
||||||
|
// 0x15E ROM header CRC-16
|
||||||
|
u16 header_crc16; // ROM header CRC-16
|
||||||
|
|
||||||
|
// 0x160 - 0x180 Debugger Reserved
|
||||||
|
u8 reserved_C[32]; // Debugger Reserved (Set ALL 0)
|
||||||
|
|
||||||
|
//==========================================================
|
||||||
|
//
|
||||||
|
// TWL only
|
||||||
|
//
|
||||||
|
//==========================================================
|
||||||
|
|
||||||
|
// 0x180 - 0x190 TWL-WRAM A/B/C ARM9 configuration data
|
||||||
|
u32 main_wram_config_data[8]; // developing...
|
||||||
|
|
||||||
|
// 0x1A0 - 0x1B0 TWL-WRAM A/B/C ARM7 configuration data
|
||||||
|
u32 sub_wram_config_data[4]; // developing...
|
||||||
|
|
||||||
|
// 0x1B0 - reserved.
|
||||||
|
u8 reserved_ltd_A[ 8 ];
|
||||||
|
|
||||||
|
// 0x1B8 - ARM7-SCFG
|
||||||
|
u32 arm7_scfg_ext; // SCFG-EXT
|
||||||
|
u8 arm7_scfg_clk; // SCFG-CLK
|
||||||
|
|
||||||
|
// padding(2byte)
|
||||||
|
u8 reserved_ltd_A2[ 2 ];
|
||||||
|
|
||||||
|
// 0x1BF - TWL expansion flags
|
||||||
|
u8 codec_mode:1; // 0:NTR mode, 1:TWL mode // undeveloped
|
||||||
|
u8 otherParentalControls:1; // 1: Enable OtherParentalControls
|
||||||
|
u8 saveBannerFile:1; // 1: Enable SaveBannerFile
|
||||||
|
u8 wifiConnection:1; // 1: Use WiFiConnection
|
||||||
|
u8 rsv:4;
|
||||||
|
|
||||||
|
// 0x1C0 for EX Static modules
|
||||||
|
//
|
||||||
|
// ARM9
|
||||||
|
u32 main_ltd_rom_offset; // ROM offset // undeveloped
|
||||||
|
u8 reserved_ltd_B[ 4 ];
|
||||||
|
void *main_ltd_ram_address; // RAM address // undeveloped //
|
||||||
|
u32 main_ltd_size; // Module size // undeveloped //
|
||||||
|
|
||||||
|
// ARM7
|
||||||
|
u32 sub_ltd_rom_offset; // ROM offset // undeveloped
|
||||||
|
u8 reserved_ltd_C[ 4 ];
|
||||||
|
void *sub_ltd_ram_address; // RAM address // undeveloped //
|
||||||
|
u32 sub_ltd_size; // Module size // undeveloped //
|
||||||
|
/* 注意: os_reset.c / crt0.HYB.c / crt0.LTD.c 内で 0x01c0 ~ 0x01e0 のアドレスを
|
||||||
|
ハードコーディングしています。 これら8つのメンバのオフセットを変更しないで下さい。 */
|
||||||
|
|
||||||
|
// 0x01E0 - 0x01E8 for NITRO digest area offset & size
|
||||||
|
u32 nitro_digest_area_rom_offset;
|
||||||
|
u32 nitro_digest_area_size;
|
||||||
|
|
||||||
|
// 0x01E8 - 0x01F0 for TWL digest area offset & size
|
||||||
|
u32 twl_digest_area_rom_offset;
|
||||||
|
u32 twl_digest_area_size;
|
||||||
|
|
||||||
|
// 0x01F0 - 0x01F8 for FS digest table1 offset & size
|
||||||
|
u32 digest1_table_offset;
|
||||||
|
u32 digest1_table_size;
|
||||||
|
|
||||||
|
// 0x01F8 - 0x0200 for FS digest table1 offset
|
||||||
|
u32 digest2_table_offset;
|
||||||
|
u32 digest2_table_size;
|
||||||
|
|
||||||
|
// 0x0200 - 0x0208 for FS digest config parameters
|
||||||
|
u32 digest1_block_size;
|
||||||
|
u32 digest2_covered_digest1_num;
|
||||||
|
|
||||||
|
// 0x0208 - 0x0210 for Banner for TWL
|
||||||
|
u32 banner_twl_offset;
|
||||||
|
u32 banner_twl_size;
|
||||||
|
|
||||||
|
// 0x0210 - 0x0218 for TWL rom valid size
|
||||||
|
u32 twl_rom_valid_size; // ROM Original Size
|
||||||
|
u8 reserved_ltd_D[ 4 ];
|
||||||
|
|
||||||
|
// 0x0218 - 0x0220 for TWL ltd module param offset
|
||||||
|
u32 main_ltd_module_param_offset; // Offset for table of ARM9 ltd module parameters
|
||||||
|
u32 sub_ltd_module_param_offset; // Offset for table of ARM7 ltd module parameters
|
||||||
|
|
||||||
|
// 0x0220 - 0x0230 for AES target offset & size
|
||||||
|
u32 aes_target_rom_offset;
|
||||||
|
u32 aes_target_size;
|
||||||
|
u32 aes_target2_rom_offset; // 予約
|
||||||
|
u32 aes_target2_size; // 予約
|
||||||
|
|
||||||
|
// 0x0230 - 0x0238 for TitleID
|
||||||
|
union {
|
||||||
|
u64 titleID;
|
||||||
|
struct {
|
||||||
|
u8 titleID_Lo[ 4 ];
|
||||||
|
u32 titleID_Hi;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
/* 注意: os_reset.c / crt0.HYB.c / crt0.LTD.c 内で 0x0234 をハードコーディングしています。
|
||||||
|
titleID_Hi のオフセットを変更しないで下さい。 */
|
||||||
|
|
||||||
|
// 0x0238 - 0x0240 for Public & Private Save Data Size
|
||||||
|
u32 public_save_data_size;
|
||||||
|
u32 private_save_data_size;
|
||||||
|
|
||||||
|
// 0x0240 - 0x02f0 reserved.
|
||||||
|
u8 reserved_ltd_F[ 0x2f0 - 0x240 ];
|
||||||
|
|
||||||
|
// 0x02f0 - 0x0300 Parental Controls Rating Info
|
||||||
|
u8 ParentalControlsRatingInfo[ 0x10 ];
|
||||||
|
|
||||||
|
// 0x0300 - 0x0378 Rom Segment Digest
|
||||||
|
u8 main_static_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
u8 sub_static_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
u8 digest2_table_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
u8 banner_twl_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
u8 main_ltd_static_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
u8 sub_ltd_static_digest[ DIGEST_SIZE_SHA1 ];
|
||||||
|
|
||||||
|
}
|
||||||
|
ROM_Header_Short;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
struct ROM_Header_Short s;
|
||||||
|
|
||||||
|
////
|
||||||
|
//// EXTRA SYSTEM REGION
|
||||||
|
////
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x02f0 - 0x0e00 System Reserved
|
||||||
|
//
|
||||||
|
u8 reserved_D[4 * 1024 - sizeof(ROM_Header_Short) - sizeof(RomCertificate) - RSA_KEY_LENGTH ]; // Reserved D
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x0e00 - 0x0f80 ROM Certificate
|
||||||
|
//
|
||||||
|
RomCertificate certificate;
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x0f80 - 0x1000 ROM Header Signature
|
||||||
|
//
|
||||||
|
u8 signature[ RSA_KEY_LENGTH ]; // PKCS#1_v1.5の形式でフォーマットされたSignatureDataが、RSA暗号化された状態
|
||||||
|
|
||||||
|
//
|
||||||
|
// 0x01000 - 0x04000 System Reserved
|
||||||
|
//
|
||||||
|
u8 reserved_E[12 * 1024]; // Reserved E
|
||||||
|
|
||||||
|
}
|
||||||
|
ROM_Header; // 16KB
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Reference in New Issue
Block a user