blob: 1039b618f4992bbc8df99a56f4d06510fab5521b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef GUARD_GPU_REGS_H
#define GUARD_GPU_REGS_H
// Exported type declarations
// Exported RAM declarations
// Exported ROM declarations
void DisableInterrupts(u16);
void EnableInterrupts(u16);
void SetGpuReg(u8, u16);
void ClearGpuRegBits(u8 regOffset, u16 mask);
#endif //GUARD_GPU_REGS_H
|