Hello World!
Abstract:
The purpose of this trivial example is to show that Adapteva’s Epiphany architecture is a true ANSI-C programmable processor. Whether the processor is being used as an embedded multicore processor or in a high performance PCI express accelerator configuration, printf can come in quite handy for debugging.
Code:
#include stdio.h;
int main(void)
{
printf("Hello, world!\n");
return 0;
}
Compile Switches:
None