Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <tice.h>
- #include <stdlib.h>
- #include <keypadc.h>
- /* Main function, called first */
- int main(void)
- {
- /* Clear the homescreen */
- os_ClrHome();
- /* Print a string */
- os_PutStrFull("Hello, World.");
- /* Waits for a key */
- while (!(kb_Data[6] & kb_Clear));
- /* Return 0 for success */
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment