Skip to content

Commit

Permalink
fix IRQ_NETWORK being disabled, close #3
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Feb 4, 2022
1 parent 2758d3f commit 351a524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arm7/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ int main() {
irqSet(IRQ_VCOUNT, VcountHandler);
irqSet(IRQ_TIMER0, apu_handler);

irqEnable(IRQ_VBLANK | IRQ_VCOUNT | IRQ_TIMER0);
irqEnable(IRQ_VBLANK | IRQ_VCOUNT | IRQ_NETWORK | IRQ_TIMER0);

setPowerButtonCB(powerButtonCB);

Expand Down

0 comments on commit 351a524

Please sign in to comment.