Advertisement
Guest User

Untitled

a guest
May 24th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. short x;
  2. int i;
  3.  
  4.  
  5. i=PPORT_BASE;
  6.  
  7. x=0x00;
  8. Out32(i,x);
  9.  
  10. printf("Se apagan todos los leds");
  11.  
  12. getch();
  13. x=0xFF;
  14. Out32(i,x);
  15. printf("Se prenden todos los leds durante 5 segundos");
  16. sleep(5000);
  17.  
  18. x=0x00;
  19. Out32(i,x);
  20. printf("Se apagan todos los leds");
  21.  
  22. printf("\n \n Fin de ejecucion... \n \n");
  23. getch();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement