diff options
Diffstat (limited to 'src/FreeBIOS.h')
-rw-r--r-- | src/FreeBIOS.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/FreeBIOS.h b/src/FreeBIOS.h index ce90725..a60c1f8 100644 --- a/src/FreeBIOS.h +++ b/src/FreeBIOS.h @@ -28,10 +28,13 @@ #ifndef FREEBIOS_H #define FREEBIOS_H +#include <array> +#include "MemConstants.h" + namespace melonDS { -extern unsigned char bios_arm7_bin[16384]; -extern unsigned char bios_arm9_bin[4096]; +extern std::array<u8, ARM7BIOSSize> bios_arm7_bin; +extern std::array<u8, ARM9BIOSSize> bios_arm9_bin; } #endif // FREEBIOS_H |