diff options
author | yenatch <yenatch@gmail.com> | 2014-05-23 15:25:16 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-05-23 15:25:16 -0700 |
commit | 955b53047c6d2ddc223ed24191de98f4b4fee5e5 (patch) | |
tree | 7f31cb4865bd4f4709ea99b6e15b34c581d28a5a /constants/misc_constants.asm | |
parent | 61dbfa440bd83b8bb490ec7e1c44ea6f0aed66df (diff) |
More complete hardware constants. Rename joypad constants.
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm new file mode 100644 index 00000000..0a22e7cc --- /dev/null +++ b/constants/misc_constants.asm @@ -0,0 +1,9 @@ +A_BUTTON EQU %00000001 +B_BUTTON EQU %00000010 +SELECT EQU %00000100 +START EQU %00001000 +D_RIGHT EQU %00010000 +D_LEFT EQU %00100000 +D_UP EQU %01000000 +D_DOWN EQU %10000000 + |