summaryrefslogtreecommitdiff
path: root/constants/status_constants.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-04-16 13:19:06 -0400
committeryenatch <yenatch@gmail.com>2014-04-16 13:19:06 -0400
commit140b01bbd6dac2c29c4fbc2cbe4360380851448e (patch)
tree11e34687a18f536878651355263268cfd0e7fa2f /constants/status_constants.asm
parent803aa1f574260333ad1f78e645302b131d7dbd48 (diff)
Use bits for status constants instead of masks.
Diffstat (limited to 'constants/status_constants.asm')
-rwxr-xr-xconstants/status_constants.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/constants/status_constants.asm b/constants/status_constants.asm
index 8dd99e1d..866ea03c 100755
--- a/constants/status_constants.asm
+++ b/constants/status_constants.asm
@@ -1,6 +1,6 @@
-; status ailments (masks)
-SLP EQU %00000111
-PSN EQU %00001000
-BRN EQU %00010000
-FRZ EQU %00100000
-PAR EQU %01000000 \ No newline at end of file
+; status ailments
+SLP EQU %111 ; mask
+PSN EQU 3
+BRN EQU 4
+FRZ EQU 5
+PAR EQU 6