comparison src/gbaisr.iwram.c @ 3:17286938e22a

change DS alt. rotate key to rotate twice
author paulo@localhost
date Wed, 08 Apr 2009 21:50:13 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:09a2652aec8f
1 #include "ljgba.h"
2 #define BIOS_IF (*(volatile unsigned short *)0x03FFFFF8)
3
4 volatile int curTime = 0;
5
6 void isr(void) {
7 unsigned int interrupts = REG_IF;
8
9 if (interrupts & IRQ_VBLANK) {
10 ++curTime;
11 }
12
13 BIOS_IF |= interrupts;
14 REG_IF = interrupts;
15 }