diff options
Diffstat (limited to 'include/globals.s')
| -rw-r--r-- | include/globals.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/globals.s b/include/globals.s index 1861e07..a958778 100644 --- a/include/globals.s +++ b/include/globals.s @@ -56,4 +56,15 @@ ;; | 1 | player's 1 state | 0: over; 1: alive | ;; | 0 | active | 0: player 1; 1: player 2 | zp_multiplayer = $26 + + ;; Extra bitmap that was needed beyond the ones that we already have. Yeah, + ;; I know, bad planning from my side, but now it's a bit complex to untangle + ;; variables like 'Globals::zp_flags'. + ;; + ;; | Bit | Short name | Meaning | + ;; |-----+------------------+----------------------------------| + ;; | 7 | score | The score has been updated. | + ;; | 6 | high | The high score has been updated. | + ;; | 5-0 | - | Unused. | + zp_extra_flags = $27 .endscope |
