blob: 5ff4ae54fa55e6ba2141a3736c61485f1b86dd1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @file test.c
* Basic userland code to be loaded by stmos for program load testing.
*/
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
while (1);
return 0;
}
|