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

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