aboutsummaryrefslogtreecommitdiff
path: root/.nasm
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-03-06 23:59:52 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-03-07 00:00:14 +0100
commit620812b5a9edc882ea5ab159914c4ff75a6cf51e (patch)
tree16b31aa3c5dbc2334da0184a500744bc2c7a3629 /.nasm
parentf21e394e597e198d1e10bca7fd8a5e1103e95a6c (diff)
downloadjetpac.nes-620812b5a9edc882ea5ab159914c4ff75a6cf51e.tar.gz
jetpac.nes-620812b5a9edc882ea5ab159914c4ff75a6cf51e.zip
Update the explosions' pool capacity
More enemies means more possible explosions. Hence, increase the pool's capacity by one to match the recent change in enemies per screen. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to '.nasm')
-rw-r--r--.nasm/memory.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/.nasm/memory.txt b/.nasm/memory.txt
index 3ff57d4..294d911 100644
--- a/.nasm/memory.txt
+++ b/.nasm/memory.txt
@@ -35,8 +35,8 @@ $50: zp_state
$51: zp_walk_counter
$53-$54: zp_lifes
$60-$6F: zp_pool_base
-$70-$7B: zp_pool_base
-$7C: zp_active
+$70-$7E: zp_pool_base
+$7F: zp_active
$80: zp_control
$81: zp_mask
$A0-$BD: zp_pool_base
@@ -69,4 +69,4 @@ $4016: m_joypad1
$4017: m_frame_counter
--- Summary (in bytes) ---
-- Internal RAM: 387/2048 (18.90%)
+- Internal RAM: 390/2048 (19.04%)