Advertisement
flyingfisch

Untitled

Feb 22nd, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <display_syscalls.h>
  2. #include <keyboard_syscalls.h>
  3.  
  4. void main(void) {
  5.     int key;
  6.     PrintXY(1,1,"Hey, World, Howd'ya do?", 1, #000)
  7.      
  8.     while (1) {
  9.         Bdisp_AllClr_VRAM();
  10.         GetKey(&key);
  11.         switch (key) {
  12.         }
  13.     }
  14.  
  15.     return;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement