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 <3ds.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <wchar.h> | |
static Handle frdHandle; | |
static int frdRefCount; | |
static Handle s_terminate; |
NewerOlder