summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2017-09-18 19:39:20 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2017-09-18 19:39:20 -0400
commit9e96bd540ad3ae258ce7b2e8184cd162caa63c48 (patch)
treee59eeb02423d412a1de859d286bfe19d1d3e3855 /src
parente23fb64dad2f349184c8ec44e38f3c495f346785 (diff)
Battle Dome Cards BEGIN
Diffstat (limited to 'src')
-rw-r--r--src/battle_dome_cards.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/battle_dome_cards.c b/src/battle_dome_cards.c
new file mode 100644
index 000000000..0afad23f6
--- /dev/null
+++ b/src/battle_dome_cards.c
@@ -0,0 +1,37 @@
+
+// Includes
+#include "global.h"
+
+// Static type declarations
+
+struct BattleDomeCard {
+ u8 unk_00[12];
+};
+
+// Static RAM declarations
+
+extern struct BattleDomeCard gUnknown_0203CD04[8];
+
+// Static ROM declarations
+
+// .rodata
+
+extern const struct BattleDomeCard gUnknown_0860B058;
+
+// .text
+
+void nullsub_122(void)
+{
+
+}
+
+bool8 dp13_810BB8C(void)
+{
+ int i;
+
+ for (i = 0; i < 8; i ++)
+ {
+ gUnknown_0203CD04[i] = gUnknown_0860B058;
+ }
+ return FALSE;
+}