diff options
Diffstat (limited to 'arm9/source/config.h')
-rw-r--r-- | arm9/source/config.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arm9/source/config.h b/arm9/source/config.h new file mode 100644 index 0000000..ae27fba --- /dev/null +++ b/arm9/source/config.h @@ -0,0 +1,22 @@ + +#ifndef CONFIG_H_ + #define CONFIG_H_ + + #include "bang.h" + + + // Allow the user to switch between instances with the L and R buttons. + #define SWITCH_BETWEEN_INSTANCES false + + // The number of Bedrock instances to initialise. This will determine + // the maximum number of programs that can run simultaneously (including + // the keyboard program). Should be at least 2. + #define NUM_INSTANCES 2 + + // Number of instances reserved for user programs. + #define USER_INSTANCES (NUM_INSTANCES-1) + + // Index of the keyboard instance, which will display on the bottom + // screen when the main instance is on the top screen. + #define KEY_INSTANCE (NUM_INSTANCES-1) +#endif |