diff options
| author | Astrid Smith | 2010-09-10 12:47:20 -0700 |
|---|---|---|
| committer | Astrid Smith | 2010-09-10 12:47:20 -0700 |
| commit | 548316a52d8649556ebbc8b3a7835ac7ae4aa7c0 (patch) | |
| tree | e004fdf53930e534bb3fd6a393070bc3003aa8b8 /loader.c | |
| parent | 0bfdccd24972de80d4ab808f4429a70947e87335 (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. */ |
