summaryrefslogtreecommitdiff
path: root/loader.c
diff options
context:
space:
mode:
authorAstrid Smith2010-09-10 12:47:20 -0700
committerAstrid Smith2010-09-10 12:47:20 -0700
commit548316a52d8649556ebbc8b3a7835ac7ae4aa7c0 (patch)
treee004fdf53930e534bb3fd6a393070bc3003aa8b8 /loader.c
parent0bfdccd24972de80d4ab808f4429a70947e87335 (diff)
Added stubs for putting the emulated screen into a TIOS-drawn window.
Diffstat (limited to 'loader.c')
-rw-r--r--loader.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/loader.c b/loader.c
index 8bcb0b0..3ee1581 100644
--- a/loader.c
+++ b/loader.c
@@ -20,6 +20,7 @@ char writestr[16] = { 0x3E, 0x41, // LD A,'A'
};
void init_load(void);
+void unload(void);
void *deref_page(int);
void close_pages(void);
@@ -74,6 +75,11 @@ void init_load(void)
}
+void unload(void)
+{
+ return;
+}
+
/* Turns a page number into a pointer to a page. Returns NULL if not
* found, throws an error in other cases.
*/