This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TEXUNIT_CONFIG] = 00011000, MASK = FFFF00FF | |
[TEXUNIT0_BORDER_COLOR] = 00000000 | |
[TEXUNIT0_DIM] = 00000000 | |
[TEXUNIT0_PARAM] = 00000000 | |
[TEXUNIT0_LOD] = 00000000 | |
[TEXUNIT0_ADDR1] = 00000000 | |
[TEXUNIT0_ADDR2] = 00000000 | |
[TEXUNIT0_ADDR3] = 00000000 | |
[TEXUNIT0_ADDR4] = 00000000 | |
[TEXUNIT0_ADDR5] = 00000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setupStuff(bool sha, u32 aesMode) | |
{ | |
if(!sha) | |
{ | |
REG_AESCNT = (AES_INPUT_BIG | AES_INPUT_NORMAL)<<23; | |
static const u32 whatever[4] = {0x12345678, 0x87654321, 0x12345678, 0x87654321}; | |
for(u32 i = 0; i < 4; i++) REG_AESCTR[i] = whatever[i]; | |
REG_NDMA3_SRC_ADDR = 0; | |
REG_NDMA3_DST_ADDR = REG_AESWRFIFO; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// extern Handle dspHandle; | |
/* | |
* filter values: | |
* | |
* 0 = filterHP32 | |
* 1 = filterHP47 | |
* 2 = filterSP32 | |
* 3 = filterSP47 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Action Replay DSi flash tool. | |
* Copyright (C) 2017 derrek, profi200 | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
Setlocal | |
Pushd "%~dp0" | |
if %1 == 1 3dshaxclient --serveradr=192.168.1.16 "--customcmd=readmem:11kern 0xFFFC0468 0x4" | grep -o 0x[0-f]* | |
if %1 == 2 3dshaxclient --serveradr=192.168.1.16 "--customcmd=readmem:11kern 0xFFFC046C 0x4" | grep -o 0x[0-f]* | |
if %2 == 1 3dshaxclient --serveradr=192.168.1.16 "--customcmd=readmem:11kern 0xFFFC0568 0x4" | grep -o 0x[0-f]* | |
if %2 == 2 3dshaxclient --serveradr=192.168.1.16 "--customcmd=readmem:11kern 0xFFFC056C 0x4" | grep -o 0x[0-f]* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3dshaxclient.exe --serveradr=192.168.1.87 "--customcmd=installcia:1,0 blah.cia" // Install a title. "installcia:[mediaType],[title db to be used. 0 standard, 1 dlp] filePath" | |
3dshaxclient.exe --serveradr=192.168.1.87 "--customcmd=deletetitle:1,0 0x000400000ff3ff00" // Delete a title. "deletetitle:[mediaType],[1 for deleting system titles] titleID" | |
3dshaxclient.exe --serveradr=192.168.1.87 "--customcmd=readctrcard game.3ds" // Dump 3DS gamecard. "readctrcard [out file path]" | |
3dshaxclient.exe --serveradr=192.168.1.87 "--customcmd=readmem:9 0x268ae1a4 0x60" // Read mem. "readmem:[9, 11kern, 11usr=procName] address size [@filePath]" | |
3dshaxclient.exe --serveradr=192.168.1.87 "--customcmd=writemem:9 0x20000004 0x4 0xbadc0ded" // Write mem. "writemem:[9, 11kern, 11usr=procName] address size [data, @filePath]" | |
3ds |
NewerOlder