diff options
author | yenatch <yenatch@gmail.com> | 2013-09-07 23:38:19 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-07 23:38:19 -0400 |
commit | 9f53825ce2701f94470a98b3decd8013fbeba91a (patch) | |
tree | 47c7a1380ebf0569eb7d5765b28f25843d636675 /main.asm | |
parent | 7a3a4f913b32784480dc297e8a4794934ec87b06 (diff) |
move common asm from engine/ to common/
engine/ was getting really bloated and common asm wasnt what it was made for
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 38 |
1 files changed, 19 insertions, 19 deletions
@@ -14,22 +14,22 @@ Start: SECTION "start",ROM0[$150] -INCLUDE "engine/init.asm" -INCLUDE "engine/vblank.asm" -INCLUDE "engine/delay.asm" -INCLUDE "engine/rtc.asm" -INCLUDE "engine/fade.asm" -INCLUDE "engine/lcd.asm" -INCLUDE "engine/time.asm" -INCLUDE "engine/serial.asm" -INCLUDE "engine/joypad.asm" -INCLUDE "engine/decompress.asm" -INCLUDE "engine/palettes.asm" -INCLUDE "engine/copy.asm" -INCLUDE "engine/text.asm" -INCLUDE "engine/video.asm" -INCLUDE "engine/map_objects.asm" -INCLUDE "engine/sine.asm" +INCLUDE "common/init.asm" +INCLUDE "common/vblank.asm" +INCLUDE "common/delay.asm" +INCLUDE "common/rtc.asm" +INCLUDE "common/fade.asm" +INCLUDE "common/lcd.asm" +INCLUDE "common/time.asm" +INCLUDE "common/serial.asm" +INCLUDE "common/joypad.asm" +INCLUDE "common/decompress.asm" +INCLUDE "common/palettes.asm" +INCLUDE "common/copy.asm" +INCLUDE "common/text.asm" +INCLUDE "common/video.asm" +INCLUDE "common/map_objects.asm" +INCLUDE "common/sine.asm" Function1b1e: ; 1b1e ld [$d003], a @@ -473,7 +473,7 @@ Function1d19: ; 1d19 ; 1d35 -INCLUDE "engine/menu.asm" +INCLUDE "common/menu.asm" AskSerial: ; 2063 @@ -515,7 +515,7 @@ AskSerial: ; 2063 ; 208a -INCLUDE "engine/game_time.asm" +INCLUDE "common/game_time.asm" Function210f: ; 210f @@ -2906,7 +2906,7 @@ Function2d43: ; 2d43 ; 2d54 -INCLUDE "engine/farcall.asm" +INCLUDE "common/farcall.asm" Predef: ; 2d83 |