mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-26 21:12:40 +02:00
12 lines
178 B
C
12 lines
178 B
C
#include "utils.h"
|
|
#include "hwinit.h"
|
|
|
|
int main(void) {
|
|
nx_hwinit();
|
|
display_init();
|
|
display_color_screen(0xFFFFFFFF);
|
|
|
|
/* Do nothing for now */
|
|
return 0;
|
|
}
|