[nostalgia/core/gba] Remove unused interrupt handlers

This commit is contained in:
Gary Talent 2020-07-17 01:49:23 -05:00
parent 0051006795
commit 72883285f2
2 changed files with 0 additions and 21 deletions

View File

@ -46,13 +46,4 @@ void nostalgia_core_isr_timer0() {
++g_timerMs;
}
void nostalgia_core_isr_timer1() {
}
void nostalgia_core_isr_timer2() {
}
void nostalgia_core_isr_timer3() {
}
}

View File

@ -72,18 +72,6 @@ isr:
ldreq r0, =nostalgia_core_isr_timer0
beq isr_call_handler
cmp r1, #Int_timer1
ldreq r0, =nostalgia_core_isr_timer1
beq isr_call_handler
cmp r1, #Int_timer2
ldreq r0, =nostalgia_core_isr_timer2
beq isr_call_handler
cmp r1, #Int_timer3
ldreq r0, =nostalgia_core_isr_timer3
beq isr_call_handler
////////////////////////////////////////////////////
// Interrupt Table End //
////////////////////////////////////////////////////