summaryrefslogtreecommitdiff
path: root/src/System.c
blob: 05a9b9b50887c195ad055b480c0ce26e7dbf666b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "System.h"
#include "Serial.h"
#include "Gfx.h"
#include <psx.h>
#include <stdio.h>

void SystemInit(void)
{
	redirect_stdio_to_sio();
#if 0
	PSX_InitEx(PSX_INIT_SAVESTATE | PSX_INIT_CD);
#else
	PSX_InitEx(0);
#endif
	SerialInit();
	GfxInit();
}