Files
3d_audio/lib_logging/examples/AN00239/src/main.xc
Steven Dan d8b2974133 init
2025-12-11 09:43:42 +08:00

16 lines
255 B
Plaintext

// Copyright 2014-2021 XMOS LIMITED.
// This Software is subject to the terms of the XMOS Public Licence: Version 1.
#include "debug_print.h"
void unit_function();
int main() {
debug_printf("Hello world\n");
unit_function();
return 0;
}