annotate examples/hello.c @ 3209:ea9c78f2cd61

* cdl/hal_cortexm_kinetis.cdl: Changes to Kinetis part builder related to addition of archhitectural hardware floating point support. CYGHWR_HAL_CORTEXM_KINETIS_FPU and CYGHWR_HAL_CORTEXM_KINETIS_FLEXNVM look and feel like other name building options. Added new Kinetis members to part selection. * include/var_io.h, src/kinetis_misc.c: Enumerated PORT F. [Bugzilla 1001607]
author vae
date Sat, 09 Mar 2013 17:19:38 +0000
parents ead06911cbae
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
168
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
1 /* this is a simple hello world program */
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
2 #include <stdio.h>
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
3
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
4 int main(void)
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
5 {
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
6 printf("Hello, eCos world!\n");
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
7 return 0;
ead06911cbae Add up-to-date examples
jlarmour
parents:
diff changeset
8 }