summaryrefslogtreecommitdiff
path: root/loader.c
diff options
context:
space:
mode:
authorDuncan Smith2010-09-10 12:47:20 -0700
committerDuncan Smith2010-09-10 12:47:20 -0700
commit9720a70bb6ca148cd7e333049a74cb86792ee79b (patch)
tree1318faa95afa7f690309906c12275659a400316f /loader.c
parent1af22b5bca4179bdac09b2d3c2cff07bc92d5d8f (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 75654f4..fffd7fb 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.
*/