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 /main.asm | |
| parent | 1af22b5bca4179bdac09b2d3c2cff07bc92d5d8f (diff) | |
Added stubs for putting the emulated screen into a TIOS-drawn window.
Diffstat (limited to 'main.asm')
| -rw-r--r-- | main.asm | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -49,9 +49,15 @@ __main: movem.l d0-d7/a0-a6,-(sp) bsr init_load + bsr display_setup + bsr emu_setup lea emu_plain_op,a5 bsr emu_run + bsr emu_teardown + + bsr display_teardown + bsr unload movem.l (sp)+,d0-d7/a0-a6 rts @@ -71,6 +77,9 @@ emu_setup: rts +emu_teardown: + rts + ;; |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ;; _ __ ___ ___ _ __ ___ ___ _ __ _ _ ||||||||||||||||||||||||||| |
