Name | Mangled Name | Size | Addr |
---|---|---|---|
AppearStep | _ZN2al19createActorFunctionI10AppearStepEEPNS_9LiveActorEPKc | 96 | 0x00395D3C |
Candlestand | _ZN2al19createActorFunctionI11CandlestandEEPNS_9LiveActorEPKc | 96 | 0x00396324 |
CandlestandFire | _ZN2al19createActorFunctionI15CandlestandFireEEPNS_9LiveActorEPKc | 96 | 0x0039705C |
CourseSelectObj | _ZN2al19createActorFunctionI15CourseSelectObjEEPNS_9LiveActorEPKc | 96 | 0x00397094 |
RestartObj | _ZN2al19createActorFunctionI10RestartObjEEPNS_9LiveActorEPKc | 96 | 0x003960F4 |
TransparentWall | _ZN2al19createActorFunctionI15TransparentWallEEPNS_9LiveActorEPKc | 96 | 0x00397404 |
al::FixMapParts | _ZN2al19createActorFunctionINS_11FixMapPartsEEEPNS_9LiveActorEPKc | 96 | 0x00396404 |
al::RollingReflectMapParts | _ZN2al19createActorFunctionINS_22RollingReflectMapPartsEEEPNS_9LiveActorEPKc | 96 | 0x00397D84 |
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
#include <3ds.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <wchar.h> | |
static Handle frdHandle; | |
static int frdRefCount; | |
static Handle s_terminate; |
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
#include <3ds.h> | |
#include <stdio.h> | |
#include "csvc.h" | |
#define PA_PTR(addr) (void *)((u32)(addr) | 1 << 31) | |
int main() | |
{ | |
gfxInitDefault(); | |
consoleInit(GFX_TOP, NULL); |
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
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <3ds.h> | |
int main() | |
{ | |
gfxInitDefault(); // Init graphic stuff | |
consoleInit(GFX_TOP, NULL); | |
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
#include <idc.idc> | |
static FuncDump(f, start) | |
{ | |
auto ea, str, count, ref; | |
auto end; | |
auto teststr; | |
ea = start; |
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
{"lastUpload":"2020-03-17T09:44:57.656Z","extensionVersion":"v3.4.3"} |
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
|
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
(PID0[fs]) CreateThread: 25 1 | |
(PID0[fs]) CreateThread: 25 1 | |
(PID0[fs]) CreateThread: 25 1 | |
(PID0[fs]) CreateThread: 25 1 | |
(PID4[pxi]) CreateThread: 45 -2 | |
(PID4[pxi]) CreateThread: 45 -2 | |
(PID4[pxi]) CreateThread: 45 -2 | |
(PID2[pm]) CreateThread: 23 -2 | |
(PID2[pm]) CreateThread: 23 -2 | |
(PID10[i2c]) CreateThread: 11 -2 |
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
/* This function runs once */ | |
void setup() | |
{ | |
/* initialize serial communication at 9600 bits per second */ | |
Serial.begin(9600); | |
} | |
/* This function runs over and over*/ | |
void loop() | |
{ |
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
/* Disable CNUB */ | |
case 0x150080: | |
{ | |
SessionInfo *info = SessionInfo_Lookup(clientSession->parentSession); | |
if(info != NULL && strcmp(info->name, "i2c::IR") == 0){ | |
skip = true; | |
res = SendSyncRequest(handle); | |
if(res == 0) | |
{ | |
u32 *staticbuf = (u32 *)((u8 *)currentCoreContext->objectContext.currentThread->threadLocalStorage + 0x180); |
OlderNewer