From 0c41a384cf0883a5dfe69352e3f0748ef8b26bfd Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 9 Mar 2024 08:42:42 -0500 Subject: [PATCH] Move Overworld incsrc into overworld.asm --- Oracle_main.asm | 17 +---------------- Overworld/overworld.asm | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 16 deletions(-) create mode 100644 Overworld/overworld.asm diff --git a/Oracle_main.asm b/Oracle_main.asm index 3d235f2..3e88695 100644 --- a/Oracle_main.asm +++ b/Oracle_main.asm @@ -58,22 +58,7 @@ namespace Oracle print " -- Overworld -- " print "" - incsrc "Overworld/world_map.asm" - - incsrc "Overworld/pit_damage.asm" - print "End of Overworld/pit_damage.asm ", pc - - incsrc "Overworld/master_sword.asm" - print "End of master_sword.asm ", pc - - incsrc "Overworld/maku_tree.asm" - print "End of Overworld/maku_tree.asm ", pc - - incsrc "Overworld/lost_woods.asm" - print "End of Overworld/lost_woods.asm ", pc - - incsrc "Overworld/time_system.asm" - print "End of Overworld/time_system.asm ", pc + incsrc "Overworld/overworld.asm" print "" diff --git a/Overworld/overworld.asm b/Overworld/overworld.asm new file mode 100644 index 0000000..91f6c42 --- /dev/null +++ b/Overworld/overworld.asm @@ -0,0 +1,16 @@ +incsrc "Overworld/world_map.asm" + +incsrc "Overworld/pit_damage.asm" +print "End of Overworld/pit_damage.asm ", pc + +incsrc "Overworld/master_sword.asm" +print "End of master_sword.asm ", pc + +incsrc "Overworld/maku_tree.asm" +print "End of Overworld/maku_tree.asm ", pc + +incsrc "Overworld/lost_woods.asm" +print "End of Overworld/lost_woods.asm ", pc + +incsrc "Overworld/time_system.asm" +print "End of Overworld/time_system.asm ", pc \ No newline at end of file