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à --- include/apu.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/apu.s') diff --git a/include/apu.s b/include/apu.s index 65d9876..bb0319f 100644 --- a/include/apu.s +++ b/include/apu.s @@ -1,4 +1,4 @@ .scope APU - DMC = $4010 - FRAME_COUNTER = $4017 + m_dmc = $4010 + m_frame_counter = $4017 .endscope -- cgit v1.2.3