diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-08-24 22:54:36 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-08-24 22:54:36 -0400 |
commit | d2e3b286a4ac5530b299fe7fc0530df734584bb3 (patch) | |
tree | e4e18350a17116f7104b053c13d7c3c93489a6b2 /home.asm | |
parent | dff855fedfd7632a24340c4e36df2810edb8db83 (diff) |
Upgrade repo for compatibility with current rgbds (breaks pre-0.3.3 compatibility)
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,12 +4,12 @@ INCLUDE "includes.asm" INCLUDE "rst.asm" INCLUDE "interrupts.asm" -SECTION "start", HOME[$100] +SECTION "start", ROM0[$100] Start:: nop jp _Start -SECTION "bank0", HOME[$150] +SECTION "bank0", ROM0[$150] INCLUDE "home/vblank.asm" INCLUDE "home/delay.asm" INCLUDE "home/rtc.asm" @@ -185,7 +185,7 @@ INCLUDE "home/random.asm" INCLUDE "home/sram.asm" jp_hl:: - jp [hl] + jp hl jp_de:: push de |