Synertek Systems Sym-1 config files

This commit is contained in:
Wayne Parham
2021-05-09 17:13:24 -05:00
parent aea5db48cb
commit f81aefe8bd
8 changed files with 619 additions and 0 deletions

9
samples/helloworld.c Normal file
View File

@@ -0,0 +1,9 @@
// Traditional "Hello World" program
#include <stdio.h>
void main (void)
{
printf( "Hello World!\n" );
return;
}