However, launching it in simple64 doesn't print hello world anywhere (e.g., the logs, or the emulator screen). I've been reading a bit about the debug library, and thus also tried printing to stderr with fprintf(stderr, "Hello world!\n");, but I also don't get anything logged.
Am I doing something wrong, or does simple64 not support your debug logging? I've also tried ares and couldn't see any console output. I have checked the cartridge ROM and it does encode the string.
Hi there, new user here, this seems like a great library for my needs.
I've make an initial project with
libdragon init
, and build it intohello.z64
. There is some initial hello world code:However, launching it in simple64 doesn't print hello world anywhere (e.g., the logs, or the emulator screen). I've been reading a bit about the debug library, and thus also tried printing to
stderr
withfprintf(stderr, "Hello world!\n");
, but I also don't get anything logged.Am I doing something wrong, or does simple64 not support your debug logging? I've also tried ares and couldn't see any console output. I have checked the cartridge ROM and it does encode the string.