diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-13 13:05:05 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-13 15:18:28 -0400 |
| commit | e239aa4aba89156ac52b2af26d1bbf084ee88e75 (patch) | |
| tree | 28e1dd069acc5c1a88662ce275f7102da68f3c4e /constants | |
| parent | 4fb008844030283ad34cb0802b088b4dd7c9891c (diff) | |
Disassemble the final English debug ROM
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/item_data_constants.asm | 2 | ||||
| -rw-r--r-- | constants/misc_constants.asm | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/constants/item_data_constants.asm b/constants/item_data_constants.asm index 4c295d5b3..f6d6384ce 100644 --- a/constants/item_data_constants.asm +++ b/constants/item_data_constants.asm @@ -47,6 +47,8 @@ MAX_BALLS EQU 12 MAX_KEY_ITEMS EQU 25 MAX_PC_ITEMS EQU 50 +MAX_ITEM_STACK EQU 99 + ; mail MAIL_LINE_LENGTH EQU $10 MAIL_MSG_LENGTH EQU $20 diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index b492e958e..a3c31141c 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -19,6 +19,9 @@ GS_VERSION EQU 0 SAVE_CHECK_VALUE_1 EQU 99 SAVE_CHECK_VALUE_2 EQU 127 +; RTC halted check value +RTC_HALT_VALUE EQU $1234 + ; time of day boundaries MORN_HOUR EQU 4 ; 4 AM DAY_HOUR EQU 10 ; 10 AM |
