From fcbc3968bd95e4d19b37d9fa4bca51b1db8596ff Mon Sep 17 00:00:00 2001 From: Ben Bridle Date: Fri, 22 Nov 2024 16:04:33 +1300 Subject: Implement name and author ports in system device --- arm9/source/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'arm9/source/main.c') diff --git a/arm9/source/main.c b/arm9/source/main.c index 8bb78d8..ae983b3 100644 --- a/arm9/source/main.c +++ b/arm9/source/main.c @@ -14,6 +14,8 @@ Bedrock *br_main; Bedrock *br_sub; bool main_on_bottom = TRUE; +char *system_name = "bedrock-nds, 0.1.0-alpha"; +char *system_authors = "Ben Bridle, 2024"; u8 main_program[] = { #include "../include/cobalt.br.inc" @@ -57,9 +59,11 @@ int main(void) { #define AWAKE(br) (br && br->alive && br->awake) #define ASLEEP(br) (br && br->alive && !br->awake) - // Set memory identifiers. + // Set memory identifiers and system device strings. for (int i=0; i