16 lines
255 B
Plaintext
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;
|
|
}
|