Coding_guy_

Untitled

May 31st, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <tice.h>
  2. #include <stdlib.h>
  3. #include <keypadc.h>
  4. /* Main function, called first */
  5. int main(void)
  6. {
  7. /* Clear the homescreen */
  8. os_ClrHome();
  9.  
  10. /* Print a string */
  11. os_PutStrFull("Hello, World.");
  12.  
  13. /* Waits for a key */
  14. while (!(kb_Data[6] & kb_Clear));
  15. /* Return 0 for success */
  16. kb_Scan();
  17. return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment