From aef156ac6216ed157b06a2872ba051af43317e93 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 13 Apr 2026 16:34:11 +0200 Subject: Add sound effects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- include/apu.s | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/apu.s b/include/apu.s index bb0319f..dc2ce87 100644 --- a/include/apu.s +++ b/include/apu.s @@ -1,4 +1,16 @@ .scope APU - m_dmc = $4010 - m_frame_counter = $4017 + m_square_1_envelope = $4000 + m_square_1_sweep = $4001 + m_square_1_low = $4002 + m_square_1_high = $4003 + m_square_2_envelope = $4004 + m_square_2_sweep = $4005 + m_square_2_low = $4006 + m_square_2_high = $4007 + m_noise_envelope = $400C + m_noise_mode = $400E + m_noise_counter = $400F + m_dmc = $4010 + m_status = $4015 + m_frame_counter = $4017 .endscope -- cgit v1.2.3