mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
14 lines
280 B
C++
14 lines
280 B
C++
#include "common.h"
|
|
#include <nds/arm9/video.h>
|
|
#include "picoLoaderBootstrap.h"
|
|
#include "PicoLoaderProcess.h"
|
|
|
|
void PicoLoaderProcess::Run()
|
|
{
|
|
REG_MASTER_BRIGHT = 0x401F;
|
|
REG_MASTER_BRIGHT_SUB = 0x401F;
|
|
REG_DISPCNT = 0;
|
|
REG_DISPCNT_SUB = 0;
|
|
pload_start();
|
|
}
|