diff options
author | yenatch <yenatch@gmail.com> | 2013-05-03 00:35:36 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-05-03 00:35:36 -0400 |
commit | adeb0ac47c9ee3876d1ce0b526d7e6a6e7170ce2 (patch) | |
tree | 6e00dd4b4dafc88d1239c3e05a1bca494a83a10a /constants.asm | |
parent | 0cbea9b553f0abf44b0bf1b28b96429b36a0bac2 (diff) |
easier-to-use status constants
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/constants.asm b/constants.asm index dea980b2d..7f390e832 100644 --- a/constants.asm +++ b/constants.asm @@ -3763,11 +3763,12 @@ SUBSTATUS_LOCK_ON EQU 5 ; status -SLP EQU 7 -PSN EQU 1 << 3 -BRN EQU 1 << 4 -FRZ EQU 1 << 5 -PAR EQU 1 << 6 +SLP EQU 7 ; 7 turns + +PSN EQU 3 +BRN EQU 4 +FRZ EQU 5 +PAR EQU 6 |