aboutsummaryrefslogtreecommitdiff
path: root/Source/System.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-07-20 22:36:19 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2017-07-20 22:36:19 +0200
commitcb1c0345c766fada621b521ca39aac02ae25056b (patch)
treee7d20a64ba04886a540e8387b023758dac361b24 /Source/System.h
parent98d3232ef413351380d2299af7058fc06a40ff86 (diff)
downloadairport-cb1c0345c766fada621b521ca39aac02ae25056b.tar.gz
+ Added support for SIO (Serial Input Output).
* On SystemLoadFileToBuffer(), files can be now uploaded to PSX using QPSXSerial.
Diffstat (limited to 'Source/System.h')
-rw-r--r--Source/System.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/System.h b/Source/System.h
index 090de8d..9192d3c 100644
--- a/Source/System.h
+++ b/Source/System.h
@@ -107,7 +107,7 @@ void SystemTimerRemove(TYPE_TIMER* timer);
// Compares two arrays of unsigned short type.
bool SystemArrayCompare(unsigned short* arr1, unsigned short* arr2, size_t sz);
-// Prints stack pointer address using dprintf()
+// Prints stack pointer address using Serial_printf()
void SystemPrintStackPointerAddress(void);
// Checks if a 32-bit pattern set at the end of the stack has been
@@ -128,6 +128,10 @@ void SystemCyclicHandler(void);
void SystemClearBuffer(void);
+void SystemEnableVBlankInterrupt();
+
+void SystemDisableVBlankInterrupt();
+
/* **************************************
* Global Variables *
* **************************************/