diff options
| author | Duncan Smith | 2010-09-10 12:47:20 -0700 |
|---|---|---|
| committer | Duncan Smith | 2010-09-10 12:47:20 -0700 |
| commit | 9720a70bb6ca148cd7e333049a74cb86792ee79b (patch) | |
| tree | 1318faa95afa7f690309906c12275659a400316f /loader.c | |
| parent | 1af22b5bca4179bdac09b2d3c2cff07bc92d5d8f (diff) | |
Added stubs for putting the emulated screen into a TIOS-drawn window.
Diffstat (limited to 'loader.c')
| -rw-r--r-- | loader.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. */ |
