Add skeleton architecture for displaying custom splash screen

This commit is contained in:
Michael Scire 2018-04-10 16:09:00 -06:00
parent 87605563d2
commit 9fadec60c5
6 changed files with 40 additions and 0 deletions

View file

@ -1,7 +1,14 @@
#include "utils.h"
#include "nxboot.h"
#include "loader.h"
#include "splash_screen.h"
/* This is the main function responsible for booting Horizon. */
void nxboot_main(void) {
loader_ctx_t *loader_ctx = get_loader_ctx();
/* TODO: Implement this function. */
/* Display splash screen. */
display_splash_screen_bmp(loader_ctx->custom_splash_path);
}