summaryrefslogtreecommitdiff
path: root/src/main.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/main.c
parent792e22676786a577b2edc0ed0ed78e51c5b38245 (diff)
downloadopensend-e32281cf6b01800f95d7640a127811c79234fe6f.tar.gz
Work on SIO IRQ
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 4e357a2..400468e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,12 +1,16 @@
+#include "System.h"
+#include <stdio.h>
+
#define PSX_EXE_HEADER_SIZE 2048
#define EXE_DATA_PACKET_SIZE 8
-void _start(void);
-
int main(void)
{
SystemInit();
+ for (;;);
+
+#if 0
{
uint32_t initPC_Address;
uint32_t RAMDest_Address;
@@ -117,6 +121,6 @@ int main(void)
exeAddress();
}
-
+#endif
return 0;
}