URL
https://opencores.org/ocsvn/ion/ion/trunk
Subversion Repositories ion
[/] [ion/] [trunk/] [src/] [hello/] [hello.c] - Rev 244
Go to most recent revision | Compare with Previous | Blame | View Log
/** * hello.c -- 'Hello World' basic test. */ #include <stdio.h> int main() { printf("compile time: " __DATE__ " -- " __TIME__ "\n"); printf("gcc version: " __VERSION__ "\n"); printf("\n\nHello World!\n\n\n"); }
Go to most recent revision | Compare with Previous | Blame | View Log