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à --- src/interrupts.s | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/interrupts.s') diff --git a/src/interrupts.s b/src/interrupts.s index 7026223..658f6a3 100644 --- a/src/interrupts.s +++ b/src/interrupts.s @@ -161,6 +161,11 @@ sta PPU::m_scroll sta PPU::m_scroll + ;; The sound effect from bullets follow a frame rule. Tick the frame count + ;; from sound as the very last thing to be done before unblocking the main + ;; code. + jsr Sound::tick + ;; Unblock the main code. lda #%01111111 and Globals::zp_flags -- cgit v1.2.3