mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-18 01:14:19 +01:00
16 lines
297 B
C
16 lines
297 B
C
|
|
#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
|