diff options
| author | yenatch <yenatch@gmail.com> | 2014-02-14 19:35:38 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-02-14 19:35:38 -0500 |
| commit | b1b084334c6f05e1253acae7ba65c8163d567bcf (patch) | |
| tree | 7cc609887493ef7806c1786e9917f37df26e793f /version.asm | |
| parent | audio: Include all constants (diff) | |
| download | pokeyellow-b1b084334c6f05e1253acae7ba65c8163d567bcf.tar.gz pokeyellow-b1b084334c6f05e1253acae7ba65c8163d567bcf.tar.xz pokeyellow-b1b084334c6f05e1253acae7ba65c8163d567bcf.zip | |
Let rgbasm handle undefined version constants.
Diffstat (limited to 'version.asm')
| -rw-r--r-- | version.asm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/version.asm b/version.asm new file mode 100644 index 00000000..6f80aa1c --- /dev/null +++ b/version.asm @@ -0,0 +1,20 @@ +if !def(_RED) +_RED EQU 0 +endc + +if !def(_BLUE) +_BLUE EQU 0 +endc + +if !def(_JAPAN) +_JAPAN EQU 0 +endc + +if !def(_GREEN) +_GREEN EQU 0 +endc + +if !def(_YELLOW) +_YELLOW EQU 0 +endc + |
