initial commit
[gba_blender] / src / intr.h
1 /*
2 blender for the Gameboy Advance
3 Copyright (C) 2021  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef _INTR_H_
19 #define _INTR_H_
20
21 #include "gbaregs.h"
22
23 /* interrupts */
24 enum {
25         INTR_VBLANK,
26         INTR_HBLANK,
27         INTR_VCOUNT,
28         INTR_TIMER0,
29         INTR_TIMER1,
30         INTR_TIMER2,
31         INTR_TIMER3,
32         INTR_COMM,
33         INTR_DMA0,
34         INTR_DMA1,
35         INTR_DMA2,
36         INTR_DMA3,
37         INTR_KEY,
38         INTR_GPAK
39 };
40
41 void intr_init(void);
42
43 /* set/clear interrupts */
44 #define set_intr()      \
45         do { REG_IME |= 0x0001; } while(0)
46 #define clr_intr()      \
47         do { REG_IME &= 0xfffe; } while(0)
48
49 /* set an interrupt handler */
50 void interrupt(int intr, void (*handler)(void));
51
52 /* mask/unmask an interrupt */
53 #define mask(intr)              do {REG_IE &= ~(1 << (intr));} while(0)
54 #define unmask(intr)    do {REG_IE |= 1 << (intr);} while(0)
55
56 #endif  /* _INTR_H_ */