summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-07 23:38:19 -0400
committeryenatch <yenatch@gmail.com>2013-09-07 23:38:19 -0400
commit9f53825ce2701f94470a98b3decd8013fbeba91a (patch)
tree47c7a1380ebf0569eb7d5765b28f25843d636675
parent7a3a4f913b32784480dc297e8a4794934ec87b06 (diff)
move common asm from engine/ to common/
engine/ was getting really bloated and common asm wasnt what it was made for
-rw-r--r--common/copy.asm (renamed from engine/copy.asm)0
-rw-r--r--common/decompress.asm (renamed from engine/decompress.asm)0
-rw-r--r--common/delay.asm (renamed from engine/delay.asm)0
-rw-r--r--common/fade.asm (renamed from engine/fade.asm)0
-rw-r--r--common/farcall.asm (renamed from engine/farcall.asm)0
-rw-r--r--common/game_time.asm (renamed from engine/game_time.asm)0
-rw-r--r--common/init.asm (renamed from engine/init.asm)0
-rw-r--r--common/joypad.asm (renamed from engine/joypad.asm)0
-rw-r--r--common/lcd.asm (renamed from engine/lcd.asm)0
-rw-r--r--common/map_objects.asm (renamed from engine/map_objects.asm)0
-rw-r--r--common/menu.asm (renamed from engine/menu.asm)0
-rw-r--r--common/palettes.asm (renamed from engine/palettes.asm)0
-rw-r--r--common/rtc.asm (renamed from engine/rtc.asm)0
-rw-r--r--common/serial.asm (renamed from engine/serial.asm)0
-rw-r--r--common/sine.asm (renamed from engine/sine.asm)0
-rw-r--r--common/text.asm (renamed from engine/text.asm)0
-rw-r--r--common/time.asm (renamed from engine/time.asm)0
-rw-r--r--common/vblank.asm (renamed from engine/vblank.asm)0
-rw-r--r--common/video.asm (renamed from engine/video.asm)0
-rw-r--r--main.asm38
20 files changed, 19 insertions, 19 deletions
diff --git a/engine/copy.asm b/common/copy.asm
index ad25c96e6..ad25c96e6 100644
--- a/engine/copy.asm
+++ b/common/copy.asm
diff --git a/engine/decompress.asm b/common/decompress.asm
index 8d39cd968..8d39cd968 100644
--- a/engine/decompress.asm
+++ b/common/decompress.asm
diff --git a/engine/delay.asm b/common/delay.asm
index 4e8b2147c..4e8b2147c 100644
--- a/engine/delay.asm
+++ b/common/delay.asm
diff --git a/engine/fade.asm b/common/fade.asm
index d67211e29..d67211e29 100644
--- a/engine/fade.asm
+++ b/common/fade.asm
diff --git a/engine/farcall.asm b/common/farcall.asm
index bdee3bf38..bdee3bf38 100644
--- a/engine/farcall.asm
+++ b/common/farcall.asm
diff --git a/engine/game_time.asm b/common/game_time.asm
index ee52488f4..ee52488f4 100644
--- a/engine/game_time.asm
+++ b/common/game_time.asm
diff --git a/engine/init.asm b/common/init.asm
index 3104c416d..3104c416d 100644
--- a/engine/init.asm
+++ b/common/init.asm
diff --git a/engine/joypad.asm b/common/joypad.asm
index 388c84e22..388c84e22 100644
--- a/engine/joypad.asm
+++ b/common/joypad.asm
diff --git a/engine/lcd.asm b/common/lcd.asm
index 9c86eaa5c..9c86eaa5c 100644
--- a/engine/lcd.asm
+++ b/common/lcd.asm
diff --git a/engine/map_objects.asm b/common/map_objects.asm
index 3ebc1b597..3ebc1b597 100644
--- a/engine/map_objects.asm
+++ b/common/map_objects.asm
diff --git a/engine/menu.asm b/common/menu.asm
index c761a927c..c761a927c 100644
--- a/engine/menu.asm
+++ b/common/menu.asm
diff --git a/engine/palettes.asm b/common/palettes.asm
index accaa96b5..accaa96b5 100644
--- a/engine/palettes.asm
+++ b/common/palettes.asm
diff --git a/engine/rtc.asm b/common/rtc.asm
index 91428d03b..91428d03b 100644
--- a/engine/rtc.asm
+++ b/common/rtc.asm
diff --git a/engine/serial.asm b/common/serial.asm
index fca9d82c3..fca9d82c3 100644
--- a/engine/serial.asm
+++ b/common/serial.asm
diff --git a/engine/sine.asm b/common/sine.asm
index 09d06ca89..09d06ca89 100644
--- a/engine/sine.asm
+++ b/common/sine.asm
diff --git a/engine/text.asm b/common/text.asm
index 4f39a95df..4f39a95df 100644
--- a/engine/text.asm
+++ b/common/text.asm
diff --git a/engine/time.asm b/common/time.asm
index fff52b173..fff52b173 100644
--- a/engine/time.asm
+++ b/common/time.asm
diff --git a/engine/vblank.asm b/common/vblank.asm
index 71114964e..71114964e 100644
--- a/engine/vblank.asm
+++ b/common/vblank.asm
diff --git a/engine/video.asm b/common/video.asm
index 0d0aa272d..0d0aa272d 100644
--- a/engine/video.asm
+++ b/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