Files
3d_audio/lib_logging/examples/AN00239/src/main.xc

16 lines
255 B
Plaintext
Raw Normal View History

2025-12-11 09:43:42 +08:00
// 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;
}