mirror of
https://github.com/YohannDR/mzm.git
synced 2024-12-04 11:27:11 +00:00
10 lines
170 B
C
10 lines
170 B
C
#ifndef MEMORY_H
|
|
#define MEMORY_H
|
|
|
|
#include "gba.h"
|
|
#include "types.h"
|
|
|
|
void BitFill(int dma_channel, u32 value, void *dst, u32 len, u8 bit_size);
|
|
|
|
#endif /* MEMORY_H */
|