diff options
| author | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-05 17:39:40 -0400 |
|---|---|---|
| committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-05 17:39:40 -0400 |
| commit | 3015d3b5476a2fa316581b69bda017b4d15f0777 (patch) | |
| tree | e2cf6b4cf0bb522335b9deea1bb9ab34505d7e59 /constants | |
| parent | 3581484fbfedf8ddda059200e9f06eaf85f49956 (diff) | |
Remaining serial functions in HOME
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/misc_constants.asm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 19deb8e..39f2769 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -21,4 +21,8 @@ D_UP EQU 1 << D_UP_F D_DOWN EQU 1 << D_DOWN_F BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START -D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN
\ No newline at end of file +D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN + +; Boolean values +FALSE EQU 0 +TRUE EQU 1 |
