From a8a10bf37c0ac72a21217c25d7fa5935c1e824c9 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Thu, 14 Nov 2019 22:56:08 -0500 Subject: [PATCH] ds: move around things in memory --- demosplash/demosplash.s | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/demosplash/demosplash.s b/demosplash/demosplash.s index 50655d4d..df286cef 100644 --- a/demosplash/demosplash.s +++ b/demosplash/demosplash.s @@ -163,26 +163,23 @@ wait_until_keypressed: ; Apple II intro .include "appleII_intro.s" +; things that are exactly 1 page in size .align $100 +.include "offsets_table.s" +.include "movement_table.s" +.include "font.s" +; things that need to not cross pages .include "vapor_lock.s" .include "delay_a.s" .include "gr_unrle.s" .include "gr_copy.s" .include "gr_offsets.s" - -;.include "text_print.s" .include "gr_pageflip.s" .include "gr_clear_bottom.s" - -.align $100 +;.align $100 +.include "gr_overlay.s" ; not critical .include "gr_fast_clear.s" -.include "gr_overlay.s" -.include "gr_run_sequence.s" -.align $100 -.include "movement_table.s" -.include "font.s" -.align $100 -.include "offsets_table.s" +.include "gr_run_sequence.s" ; not critical ; missing .include "missing.s"