Remove unnecessary double jump
This commit is contained in:
+1
-4
@@ -4,7 +4,7 @@
|
|||||||
.org 0x0000 ; RESET Vector
|
.org 0x0000 ; RESET Vector
|
||||||
rjmp main
|
rjmp main
|
||||||
.org 0x000A ; TIMER0_COMPA (Timer0 Compare Match A)
|
.org 0x000A ; TIMER0_COMPA (Timer0 Compare Match A)
|
||||||
rjmp isr_stop_blink
|
rjmp stop_blink
|
||||||
|
|
||||||
#define __SFR_OFFSET 0
|
#define __SFR_OFFSET 0
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
@@ -21,9 +21,6 @@
|
|||||||
; this enable a more precise/fast interrupt
|
; this enable a more precise/fast interrupt
|
||||||
; useful for the tap tempo stuff
|
; useful for the tap tempo stuff
|
||||||
|
|
||||||
isr_stop_blink:
|
|
||||||
rjmp stop_blink ; Turn off PB0 when TCNT0=OCF0A
|
|
||||||
|
|
||||||
main:
|
main:
|
||||||
; To compile on AtTiny25/45 comment out the SPH part
|
; To compile on AtTiny25/45 comment out the SPH part
|
||||||
; SPH is needed only on AtTiny85 which has >256b of SRAM
|
; SPH is needed only on AtTiny85 which has >256b of SRAM
|
||||||
|
|||||||
Reference in New Issue
Block a user