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