From 74b1003ab8abad2f8220de4f2f18a3b118f23f01 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 10 Dec 2025 14:41:35 +0100 Subject: Adapt the code to play well with nasm's asan MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The address sanitizer from nasm provides quite a few goodies, so let's adapt the code more to it to benefit from those. Signed-off-by: Miquel Sabaté Solà --- src/bullets.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bullets.s') diff --git a/src/bullets.s b/src/bullets.s index db8bfd7..0f31d0c 100644 --- a/src/bullets.s +++ b/src/bullets.s @@ -18,7 +18,7 @@ ;; bullet. ;; 2. Y coordinate. ;; 3. X coordinate. - zp_bullets_pool_base = $A0 + zp_bullets_pool_base = $A0 ; asan:reserve $1E ;; The current amount of bullets on screen. zp_bullets_pool_size = $E0 -- cgit v1.2.3