mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
16 lines
185 B
C
16 lines
185 B
C
#ifndef GUARD_DMA_H
|
|
#define GUARD_DMA_H
|
|
|
|
#include "global.h"
|
|
|
|
#define DMA_COUNT 4
|
|
|
|
enum {
|
|
DMA_NOW,
|
|
DMA_VBLANK,
|
|
DMA_HBLANK,
|
|
DMA_SPECIAL
|
|
};
|
|
|
|
void RunDMAs(u32 type);
|
|
#endif |