diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-07-04 22:14:27 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-07-04 22:14:27 -0700 |
commit | 45af84e3363d664404a676939c939f5f4997a718 (patch) | |
tree | 12f63db02e3fcbe0bcab3cd719a5d0e8744c0a94 /constants.asm | |
parent | b85d9b86add29a64eec6a48f4a69054641213853 (diff) | |
parent | 699cbaa8176bc384d98561bf627581fc54cba130 (diff) |
Merge pull request #20 from iimarckus/minortextlabels
Minortextlabels
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index c0b0c840d..bb9937f8e 100644 --- a/constants.asm +++ b/constants.asm @@ -1533,6 +1533,15 @@ HM_05 EQU $F7 HM_06 EQU $F8 HM_07 EQU $F9 +; days of the week +SUNDAY EQU $00 +MONDAY EQU $01 +TUESDAY EQU $02 +WEDNESDAY EQU $03 +THURSDAY EQU $04 +FRIDAY EQU $05 +SATURDAY EQU $06 + ; trainer groups FALKNER EQU $01 WHITNEY EQU $02 |