From 34732b2ef69267bb4c2e545b4432d286ea7a783f Mon Sep 17 00:00:00 2001 From: Justin Scofield Date: Mon, 30 May 2022 23:12:15 -0400 Subject: [PATCH] Add the main source file for entire hack --- Oracle_main.asm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 Oracle_main.asm diff --git a/Oracle_main.asm b/Oracle_main.asm new file mode 100644 index 0000000..2b02b96 --- /dev/null +++ b/Oracle_main.asm @@ -0,0 +1,49 @@ +;=========================================================== +; The Legend of Zelda: Oracle of Secrets +; Composed by: Scawful +; +; Hacks Included: +; Inventory Screen Overhaul +; Book Reveals Secrets +; Bunny Hood Item +; Ice Rod Freezes Water +; Intro skip after leaving house +; Key block link's awakening +; Lost Sea Area Combo +; +;=========================================================== + +namespace Oracle +{ + print "" + print "Applying patches to Oracle of Secrets" + print "" + + incsrc "Util/ram.asm" + incsrc "Util/functions.asm" + + incsrc "Menu/menu.asm" + print "End of Menu/menu.asm ", pc + + incsrc "Book/book.asm" + print "End of Book/Book.asm ", pc + + incsrc "BunnyHood/bunnyhood.asm" + print "End of BunnyHood/bunnyhood.asm ", pc + + incsrc "IceRod/icerod.asm" + print "End of IceRod/icerod.asm ", pc + + incsrc "Intro/intro.asm" + print "End of Intro/intro.asm ", pc + + incsrc "KeyBlock/keyblock.asm" + print "End of KeyBlock/keyblock.asm ", pc + + incsrc "LostSea/lostsea.asm" + print "End of LostSea/lostsea.asm ", pc + + print "" + print "Finished applying patches" +} +namespace off