diff options
| author | yenatch <yenatch@gmail.com> | 2014-07-12 09:02:49 -0400 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-07-12 09:02:49 -0400 |
| commit | fb11ff7e55be56cef9234c8443614f04f2157a1e (patch) | |
| tree | a6aa8d0745bd07d0b80090491b5e4b6652de4420 /blue | |
| parent | Pull a lot of engine out of main.asm (diff) | |
| parent | Update INSTALL.md (diff) | |
| download | pokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.tar.gz pokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.tar.xz pokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.zip | |
Merge pull request #48 from yenatch/master
Clean up post-split main.asm. Get rid of static wram addresses. Lay out a foundation for Yellow.
Diffstat (limited to 'blue')
| -rw-r--r-- | blue/audio.asm | 2 | ||||
| -rw-r--r-- | blue/main.asm | 2 | ||||
| -rw-r--r-- | blue/text.asm | 2 | ||||
| -rw-r--r-- | blue/wram.asm | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/blue/audio.asm b/blue/audio.asm new file mode 100644 index 00000000..53e37a2d --- /dev/null +++ b/blue/audio.asm @@ -0,0 +1,2 @@ +INCLUDE "blue.asm" +INCLUDE "audio.asm" diff --git a/blue/main.asm b/blue/main.asm new file mode 100644 index 00000000..3fcef980 --- /dev/null +++ b/blue/main.asm @@ -0,0 +1,2 @@ +INCLUDE "blue.asm" +INCLUDE "main.asm" diff --git a/blue/text.asm b/blue/text.asm new file mode 100644 index 00000000..ec6d7203 --- /dev/null +++ b/blue/text.asm @@ -0,0 +1,2 @@ +INCLUDE "blue.asm" +INCLUDE "text.asm" diff --git a/blue/wram.asm b/blue/wram.asm new file mode 100644 index 00000000..70292177 --- /dev/null +++ b/blue/wram.asm @@ -0,0 +1,2 @@ +INCLUDE "blue.asm" +INCLUDE "wram.asm" |
