forked from jasondellaluce/arm9loaderhax
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support to load the arm9bootloader file from the arm9loaderhaxf…
…older Added the BOOTCTR9 section for configurations like logging and key time Added the extended splash screen, which shows the loaded payload changed the ascii splash to show bootctr9 Some minor fixes
- Loading branch information
Showing
12 changed files
with
306 additions
and
122 deletions.
There are no files selected for viewing
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,6 @@ | |
#define KEY_Y (1 << 11) | ||
|
||
|
||
u32 WaitTimeForInput(u32 waittime); | ||
u32 InputWait(); | ||
u32 GetInput(); |
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
#pragma once | ||
|
||
#include "common.h" | ||
#include "config.h" | ||
|
||
#define ASCII_ART_TEMPLATE (" _ __\n" \ | ||
"|_) _ _ _|_/ _|_ __\n" \ | ||
"|_)(_)(_) |_\\__ |_ |\n" \ | ||
|
||
#define ASCII_ART_TEMPLATE (" _ __ _\n" \ | ||
"|_) _ _ _|_/ _|_ __(_)\n" \ | ||
"|_)(_)(_) |_\\__ |_ | /\n" \ | ||
"%s\n" \ | ||
"\n" \ | ||
"is loading...") | ||
|
||
#define ASCII_ART_TEMPLATE_EXTENDET (" _ __ _\n" \ | ||
"|_) _ _ _|_/ _|_ __(_)\n" \ | ||
"|_)(_)(_) |_\\__ |_ | /\n" \ | ||
"%s\n" \ | ||
"\n" \ | ||
"Payload: %s") | ||
|
||
bool drawBootSplash(loaderConfiguration* loaderConfig); | ||
bool drawSplash(configuration* app); | ||
int splash_ascii(void); | ||
int splash_ascii_extendet(const char* payloadName); | ||
int splash_image(char *splash_path); | ||
int splash_image_extendet(char *splash_path,const char* payloadName); |
This file contains 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 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 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
Oops, something went wrong.