aboutsummaryrefslogtreecommitdiff
path: root/src/interrupts.s
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-08 09:31:14 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-08 09:34:52 +0200
commit6ee6c7512bdbc836642dfdd607854faced55dfc3 (patch)
tree3b8ca9c553e812ab9c9ddc8a94d80db9374bd3da /src/interrupts.s
parentda6f2c70174219f61d0498bdd4325b7a8842a1fa (diff)
downloadjetpac.nes-6ee6c7512bdbc836642dfdd607854faced55dfc3.tar.gz
jetpac.nes-6ee6c7512bdbc836642dfdd607854faced55dfc3.zip
Remove unused labels
Since commit 6a9dea943c07 ("Add a new 'check' stage in assemble()"), nasm is now able to detect unused labels. This was then tried on this repository the cleanup labels which were never used. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/interrupts.s')
-rw-r--r--src/interrupts.s3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interrupts.s b/src/interrupts.s
index 658f6a3..dc6e51c 100644
--- a/src/interrupts.s
+++ b/src/interrupts.s
@@ -6,9 +6,8 @@
;; If we are on a dev environment, account for any frame drops.
.ifdef PARTIAL
- bmi @after_frame_check
+ bmi @save_registers
jmp @account_for_frame_drop
- @after_frame_check:
.else
bmi @save_registers
rti