summaryrefslogtreecommitdiff
path: root/src/System.c
diff options
context:
space:
mode:
authorXavi Del Campo <xavi.dcr@tutanota.com>2020-03-03 20:07:27 +0100
committerXavi Del Campo <xavi.dcr@tutanota.com>2020-03-05 18:38:04 +0100
commite32281cf6b01800f95d7640a127811c79234fe6f (patch)
treef34d870bfdfa425600aead8cbf9aadcbc71d4fbc /src/System.c
parent792e22676786a577b2edc0ed0ed78e51c5b38245 (diff)
downloadopensend-e32281cf6b01800f95d7640a127811c79234fe6f.tar.gz
Work on SIO IRQ
Diffstat (limited to 'src/System.c')
-rw-r--r--src/System.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/System.c b/src/System.c
index d7a1574..9a48d30 100644
--- a/src/System.c
+++ b/src/System.c
@@ -2,10 +2,15 @@
#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();
}