URL
https://opencores.org/ocsvn/zipcpu/zipcpu/trunk
Subversion Repositories zipcpu
[/] [zipcpu/] [trunk/] [bench/] [cpp/] [helloworld.c] - Rev 209
Compare with Previous | Blame | View Log
//////////////////////////////////////////////////////////////////////////////// // // Filename: helloworld.c // // Project: Zip CPU -- a small, lightweight, RISC CPU soft core // // Purpose: The original Helllo World program. If everything works, this // will print Hello World to the UART, and then halt the CPU--if // run with no O/S. // // //////////////////////////////////////////////////////////////////////////////// // // Gisselquist Technology asserts no ownership rights over this particular // hello world program. // //////////////////////////////////////////////////////////////////////////////// // // #include <stdio.h> int main(int argc, char **argv) { printf("Hello, World!\r\n"); return 0; }