Create the Screen Center overlay

This commit is contained in:
Jaby
2024-01-05 11:10:02 -06:00
committed by Jaby
parent c803629b1f
commit 18cd7f5ac9
7 changed files with 43 additions and 12 deletions

View File

@@ -12,5 +12,9 @@ namespace GPUTest {
extern const volatile JabyEngine::AutoLBAEntry lba[];
extern JabyEngine::CDFile Assets[2];
void main();
}
namespace ScreenCenter {
void main();
}

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
namespace ScreenCenter {
void main() {
printf("BlubbBlubbBlubbBlubb\n");
}
}