Guest User

Untitled

a guest
Oct 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. void main()
  2. {
  3. char x;
  4.  
  5. while(1)
  6. {
  7. outportb(0x501, 0xAA);
  8.  
  9. x = inportb(0x500);
  10.  
  11. if(x != 0xAA)
  12. printf("Fehler");
  13. else
  14. printf("OK");
  15.  
  16. outportb(0x501, 0x55);
  17.  
  18. x = inportb(0x500);
  19.  
  20. if(x != 0x55)
  21. printf("Fehler");
  22. else
  23. printf("OK");
  24. }
  25. }
Add Comment
Please, Sign In to add comment