Remove unnecessary double jump

This commit is contained in:
2025-12-31 22:54:47 +01:00
parent b3d7d19579
commit c673e7c7a5
+1 -4
View File
@@ -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 <avr/io.h>
@@ -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