21 lines
344 B
C
Raw Normal View History

2016-03-19 17:30:56 +01:00
/*
* main.c
* by Reisyukaku
* Copyright (c) 2015 All Rights Reserved
*
* Minimalist CFW for N3DS
*/
#include "fs.h"
#include "installer.h"
#include "screeninit.h"
#include "draw.h"
#include "types.h"
#define PDN_GPU_CNT (*(vu8 *)0x10141200)
2016-03-19 17:30:56 +01:00
void main(void){
mountSD();
if(PDN_GPU_CNT == 0x1) initLCD();
installer();
}