diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-11-23 15:22:16 -0600 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-11-23 15:22:16 -0600 |
commit | 2582d7a8680e32493403d484c1990e1a63fb2015 (patch) | |
tree | 1994f24742ed525d9fcc7f5e31617f01e08f41c4 /src/personality_test.c | |
parent | fc7f14ab66ff8e23cd758a9435f8ac48e99ae75f (diff) |
isemi-identified VRAM and split personality test funcs
Diffstat (limited to 'src/personality_test.c')
-rw-r--r-- | src/personality_test.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/personality_test.c b/src/personality_test.c index bac1b89..c0562e4 100644 --- a/src/personality_test.c +++ b/src/personality_test.c @@ -28,3 +28,28 @@ const u16 gPartners[10] = SPECIES_MUDKIP }; +extern u8 gUnknown_80F42D0[]; +extern u8 gUnknown_80F42F0[]; +extern u8 gUnknown_203B408; + +u8 sub_803D0D8() +{ + return gUnknown_203B408; +} + +void sub_803D0E4(u8 r0) +{ + gUnknown_203B408 = r0; +} + +u8 sub_803D0F0(u8 r0) +{ + return gUnknown_80F42F0[r0]; +} + +u8 sub_803D100(u8 r0) +{ + return gUnknown_80F42D0[r0]; +} + + |