pokefirered/include/platform/dma.h
2026-04-14 16:34:24 +02:00

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