diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-06-17 19:14:55 -0400 |
---|---|---|
committer | PikalaxALT <pikalax1@gmail.com> | 2017-09-23 23:04:10 -0400 |
commit | 0e470bc785eedf96da20c364723ab59eb3fa5242 (patch) | |
tree | 0c618351aac442e1a2718e4fb2f734e3bcd3e8bd /engine/crystal_intro.asm | |
parent | e1c2876ff69986c0d537507f96d3c270b745273b (diff) |
Fix section linking
Create linker script and float all sections
Diffstat (limited to 'engine/crystal_intro.asm')
-rwxr-xr-x | engine/crystal_intro.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/crystal_intro.asm b/engine/crystal_intro.asm index 29bb0934f..e324ed476 100755 --- a/engine/crystal_intro.asm +++ b/engine/crystal_intro.asm @@ -125,7 +125,7 @@ PlaceGameFreakPresents: ; e4670 ld a, [hli] ld h, [hl] ld l, a - jp [hl] + jp hl ; e467f .dw ; e467f @@ -222,7 +222,7 @@ GameFreakLogoJumper: ; e46ed (39:46ed) ld a, [hli] ld h, [hl] ld l, a - jp [hl] + jp hl GameFreakLogoScenes: ; e46fd (39:46fd) dw GameFreakLogoScene1 @@ -438,7 +438,7 @@ IntroSceneJumper: ; e490f ld a, [hli] ld h, [hl] ld l, a - jp [hl] + jp hl ; e491e IntroScenes: ; e491e (39:491e) |