summaryrefslogtreecommitdiff
path: root/include/dma3.h
diff options
context:
space:
mode:
authorDiegoisawesome <Diegoisawesome@users.noreply.github.com>2017-10-03 01:26:01 -0500
committerGitHub <noreply@github.com>2017-10-03 01:26:01 -0500
commitd32ec8bf7246468625ab68a2d62835d70b7ac98c (patch)
treecc09c6b3cdc80f40dd598f21282cf6f591870e5c /include/dma3.h
parente774b79b45ac39eebdfb6dcbb9ff73f7bacab094 (diff)
parent10c5a7a2dda078d90ea54114559110fa68f88f9e (diff)
Merge pull request #59 from PikalaxALT/sym_bss
BSS; decompile tileset_anims
Diffstat (limited to 'include/dma3.h')
-rw-r--r--include/dma3.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/dma3.h b/include/dma3.h
index db75ea9e3..265b47824 100644
--- a/include/dma3.h
+++ b/include/dma3.h
@@ -1,20 +1,6 @@
#ifndef GUARD_DMA3_H
#define GUARD_DMA3_H
-extern u8 gDma3ManagerLocked;
-extern u8 gDma3RequestCursor;
-
-struct DmaRequestsStruct
-{
- /* 0x00 */ const u8 *src;
- /* 0x04 */ u8 *dest;
- /* 0x08 */ u16 size;
- /* 0x0A */ u16 mode;
- /* 0x0C */ u32 value;
-};
-
-extern struct DmaRequestsStruct gDma3Requests[128];
-
void ClearDma3Requests(void);
void ProcessDma3Requests(void);
int RequestDma3Copy(const void *src, void *dest, u16 size, u8 mode);