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

void SystemInit(void)
{
	redirect_stdio_to_sio();
	PSX_InitEx(0);
	SerialInit();
	GfxInit();
}

void SystemDeinit(void)
{
	PSX_DeInit();
}