Decompile mainInit

This commit is contained in:
Ryan Dwyer 2022-08-22 17:38:33 +10:00
parent e1c9bdf80f
commit 9da91a226d
6 changed files with 299 additions and 1851 deletions

0
Normal file
View File

View File

@ -23,7 +23,7 @@ extern u8 g_Is4Mb;
extern u32 g_VmNumTlbMisses; extern u32 g_VmNumTlbMisses;
extern u32 g_VmNumPageMisses; extern u32 g_VmNumPageMisses;
extern u32 g_VmNumPageReplaces; extern u32 g_VmNumPageReplaces;
extern u32 g_VmMarker; extern u8 *g_VmMarker;
extern u32 g_VmRamEnd; extern u32 g_VmRamEnd;
extern u32 g_VmStateTableEnd; extern u32 g_VmStateTableEnd;
extern AMAudioMgr g_AudioManager; extern AMAudioMgr g_AudioManager;

View File

@ -11,7 +11,7 @@ void profile00009a98(void);
void profileSetMarker(u32 arg0); void profileSetMarker(u32 arg0);
Gfx *profileRender(Gfx *gdl); Gfx *profileRender(Gfx *gdl);
void viConfigureForLogos(void); void viConfigureForLogos(void);
void viConfigureForBanner(u8 *fb); void viConfigureForCopyright(u8 *fb);
void viConfigureForLegal(void); void viConfigureForLegal(void);
void viReset(s32 stagenum); void viReset(s32 stagenum);
void viBlack(bool black); void viBlack(bool black);

File diff suppressed because it is too large Load Diff

View File

@ -104,15 +104,13 @@ void viConfigureForLogos(void)
} }
/** /**
* Configure the VI to display a banner texture. * Configure the VI to display the copyright or accessingpak texture.
* *
* The banner texture is the first thing displayed after power on. * The texture is the first thing displayed after power on.
* It is either the copyright notice, or the "Accessing Pak" message
* if holding start to enter the boot pak menu.
* *
* Both textures are 576 x 48. * Both textures are 507 x 48, but the framebuffer width is 576.
*/ */
void viConfigureForBanner(u8 *texturedata) void viConfigureForCopyright(u8 *texturedata)
{ {
s32 i; s32 i;

View File

@ -70,7 +70,7 @@ u8 g_Is4Mb;
u32 g_VmNumTlbMisses; u32 g_VmNumTlbMisses;
u32 g_VmNumPageMisses; u32 g_VmNumPageMisses;
u32 g_VmNumPageReplaces; u32 g_VmNumPageReplaces;
u32 g_VmMarker; u8 *g_VmMarker;
u32 g_VmRamEnd; u32 g_VmRamEnd;
u32 g_VmStateTableEnd; u32 g_VmStateTableEnd;