adolf01

P65 C test program

Feb 25th, 2021 (edited)
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1.  
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5.  
  6. #include "gameduino.h"
  7.  
  8.  
  9.  
  10. void setup(){
  11.   ACIAINIT();
  12.   GDINIT();
  13.   KBINIT();
  14. }
  15.  
  16.  
  17. void main(void) {
  18.   setup();
  19.  
  20.   PRNTLN("APPARTUS PROJEKT65 testovací program");
  21.   PRNTLN("m for start monitor");
  22.   if (CHRIN() == 'm') EWOZ();
  23.   while(1){
  24.  
  25.   }
  26. }
Add Comment
Please, Sign In to add comment