From 9f53825ce2701f94470a98b3decd8013fbeba91a Mon Sep 17 00:00:00 2001 From: yenatch Date: Sat, 7 Sep 2013 23:38:19 -0400 Subject: [PATCH] move common asm from engine/ to common/ engine/ was getting really bloated and common asm wasnt what it was made for --- {engine => common}/copy.asm | 0 {engine => common}/decompress.asm | 0 {engine => common}/delay.asm | 0 {engine => common}/fade.asm | 0 {engine => common}/farcall.asm | 0 {engine => common}/game_time.asm | 0 {engine => common}/init.asm | 0 {engine => common}/joypad.asm | 0 {engine => common}/lcd.asm | 0 {engine => common}/map_objects.asm | 0 {engine => common}/menu.asm | 0 {engine => common}/palettes.asm | 0 {engine => common}/rtc.asm | 0 {engine => common}/serial.asm | 0 {engine => common}/sine.asm | 0 {engine => common}/text.asm | 0 {engine => common}/time.asm | 0 {engine => common}/vblank.asm | 0 {engine => common}/video.asm | 0 main.asm | 38 +++++++++++++++--------------- 20 files changed, 19 insertions(+), 19 deletions(-) rename {engine => common}/copy.asm (100%) rename {engine => common}/decompress.asm (100%) rename {engine => common}/delay.asm (100%) rename {engine => common}/fade.asm (100%) rename {engine => common}/farcall.asm (100%) rename {engine => common}/game_time.asm (100%) rename {engine => common}/init.asm (100%) rename {engine => common}/joypad.asm (100%) rename {engine => common}/lcd.asm (100%) rename {engine => common}/map_objects.asm (100%) rename {engine => common}/menu.asm (100%) rename {engine => common}/palettes.asm (100%) rename {engine => common}/rtc.asm (100%) rename {engine => common}/serial.asm (100%) rename {engine => common}/sine.asm (100%) rename {engine => common}/text.asm (100%) rename {engine => common}/time.asm (100%) rename {engine => common}/vblank.asm (100%) rename {engine => common}/video.asm (100%) diff --git a/engine/copy.asm b/common/copy.asm similarity index 100% rename from engine/copy.asm rename to common/copy.asm diff --git a/engine/decompress.asm b/common/decompress.asm similarity index 100% rename from engine/decompress.asm rename to common/decompress.asm diff --git a/engine/delay.asm b/common/delay.asm similarity index 100% rename from engine/delay.asm rename to common/delay.asm diff --git a/engine/fade.asm b/common/fade.asm similarity index 100% rename from engine/fade.asm rename to common/fade.asm diff --git a/engine/farcall.asm b/common/farcall.asm similarity index 100% rename from engine/farcall.asm rename to common/farcall.asm diff --git a/engine/game_time.asm b/common/game_time.asm similarity index 100% rename from engine/game_time.asm rename to common/game_time.asm diff --git a/engine/init.asm b/common/init.asm similarity index 100% rename from engine/init.asm rename to common/init.asm diff --git a/engine/joypad.asm b/common/joypad.asm similarity index 100% rename from engine/joypad.asm rename to common/joypad.asm diff --git a/engine/lcd.asm b/common/lcd.asm similarity index 100% rename from engine/lcd.asm rename to common/lcd.asm diff --git a/engine/map_objects.asm b/common/map_objects.asm similarity index 100% rename from engine/map_objects.asm rename to common/map_objects.asm diff --git a/engine/menu.asm b/common/menu.asm similarity index 100% rename from engine/menu.asm rename to common/menu.asm diff --git a/engine/palettes.asm b/common/palettes.asm similarity index 100% rename from engine/palettes.asm rename to common/palettes.asm diff --git a/engine/rtc.asm b/common/rtc.asm similarity index 100% rename from engine/rtc.asm rename to common/rtc.asm diff --git a/engine/serial.asm b/common/serial.asm similarity index 100% rename from engine/serial.asm rename to common/serial.asm diff --git a/engine/sine.asm b/common/sine.asm similarity index 100% rename from engine/sine.asm rename to common/sine.asm diff --git a/engine/text.asm b/common/text.asm similarity index 100% rename from engine/text.asm rename to common/text.asm diff --git a/engine/time.asm b/common/time.asm similarity index 100% rename from engine/time.asm rename to common/time.asm diff --git a/engine/vblank.asm b/common/vblank.asm similarity index 100% rename from engine/vblank.asm rename to common/vblank.asm diff --git a/engine/video.asm b/common/video.asm similarity index 100% rename from engine/video.asm rename to common/video.asm diff --git a/main.asm b/main.asm index 5e0e782ba..30084dbf2 100644 --- a/main.asm +++ b/main.asm @@ -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