misc. things

This commit is contained in:
StapleButter
2017-05-09 03:54:37 +02:00
parent 7c1443b973
commit 50d2ffb207
5 changed files with 66 additions and 0 deletions

View File

@ -837,6 +837,14 @@ void debug(u32 param)
fwrite(&val, 4, 1, shit);
}
fclose(shit);*/
/*FILE*
shit = fopen("debug/pictochat7.bin", "wb");
for (u32 i = 0x037F0000; i < 0x03810000; i+=4)
{
u32 val = ARM7Read32(i);
fwrite(&val, 4, 1, shit);
}
fclose(shit);*/
}