From 4cc6b7ada93567f97033405b88e183dc1c8a8bc1 Mon Sep 17 00:00:00 2001 From: Justin Scofield Date: Mon, 30 May 2022 23:13:12 -0400 Subject: [PATCH] leaving house skips intro sequence --- Intro/intro.asm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Intro/intro.asm diff --git a/Intro/intro.asm b/Intro/intro.asm new file mode 100644 index 0000000..d41b7c2 --- /dev/null +++ b/Intro/intro.asm @@ -0,0 +1,28 @@ +;=========================================================== +; Intro +; +; asm for no Header ALTTP US Rom +; game will Switch to part 1 after your uncle left the house +;=========================================================== + +namespace Intro +{ + Main: { + lorom + + ORG $05DF12 + JSL $04ECA0 + NOP + NOP + + org $04ECA0 + STZ $0DD0,x + STZ $02E4 ; repeat native code overwritten by hook + LDA #$02 + STA $7ef3C5 ; store "part 2" + LDA #$00 + STA $7ef3CC ; disable telepathic message + JSL $00FC41 ; fix monsters + RTL + } ; label Main +} ; namespace Intro