mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
17 lines
257 B
C
17 lines
257 B
C
|
#include <OSUtils.h>
|
||
|
#include "ShowInitIcon.h"
|
||
|
#include "Retro68Runtime.h"
|
||
|
|
||
|
void _start()
|
||
|
{
|
||
|
RETRO68_RELOCATE();
|
||
|
Retro68CallConstructors();
|
||
|
|
||
|
ShowInitIcon(130, false);
|
||
|
Delay(20, NULL);
|
||
|
ShowInitIcon(128, true);
|
||
|
Delay(40, NULL);
|
||
|
|
||
|
Retro68FreeGlobals();
|
||
|
}
|