summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
authoranmart <andrewrmartinek@gmail.com>2016-02-09 03:10:12 -0500
committeranmart <andrewrmartinek@gmail.com>2016-02-09 03:10:12 -0500
commit67ef216c62b726bcee05d615cb6b831d62b75038 (patch)
treefb99dbe082ecf1eb6800bbff31a3f685067d8ea1 /src/constants
parent5f0525837668e6388034b90445cce42d2516183b (diff)
Provided labels for various data
Defined two new labels in wram. Defined names for the oddly arbitrary values representing whose turn it is in battle. Renamed labels for some parts of the dueling main loop and loss function.
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/misc_constants.asm4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants/misc_constants.asm b/src/constants/misc_constants.asm
index d985e77..6db4460 100644
--- a/src/constants/misc_constants.asm
+++ b/src/constants/misc_constants.asm
@@ -2,3 +2,7 @@
CONSOLE_DMG EQU $00
CONSOLE_SGB EQU $01
CONSOLE_CGB EQU $02
+
+; dueling constants
+PLAYER_TURN EQU $c2
+OPPONENT_TURN EQU $c3 \ No newline at end of file