From c673e7c7a54fc5b4d6a6ca0ce0b2a36a0a0eeca8 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Wed, 31 Dec 2025 22:54:47 +0100 Subject: [PATCH] Remove unnecessary double jump --- src/clockinator.S | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/clockinator.S b/src/clockinator.S index e7a1309..3636503 100644 --- a/src/clockinator.S +++ b/src/clockinator.S @@ -4,7 +4,7 @@ .org 0x0000 ; RESET Vector rjmp main .org 0x000A ; TIMER0_COMPA (Timer0 Compare Match A) - rjmp isr_stop_blink + rjmp stop_blink #define __SFR_OFFSET 0 #include @@ -21,9 +21,6 @@ ; this enable a more precise/fast interrupt ; useful for the tap tempo stuff -isr_stop_blink: - rjmp stop_blink ; Turn off PB0 when TCNT0=OCF0A - main: ; To compile on AtTiny25/45 comment out the SPH part ; SPH is needed only on AtTiny85 which has >256b of SRAM