Advertisement
Guest User

MKIMG.C

a guest
Feb 1st, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.73 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <dos.h>
  3. #include <stdlib.h>
  4. unsigned char img[256] = {
  5. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
  6. 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
  7. 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
  8. 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
  9. 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
  10. 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  11. 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
  12. 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
  13. 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
  14. 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
  15. 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
  16. 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
  17. 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
  18. 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
  19. 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
  20. 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
  21. };
  22. unsigned char readback[256];
  23. int main(void){
  24. unsigned char incx = 0;
  25. unsigned char incy = 0;
  26. unsigned short inca = 0;
  27.  
  28. FILE *fimg;
  29.  
  30. fimg = fopen("C:/IMGOUT.VGA", "wb");
  31. fwrite(img, 1, 256, fimg);
  32. fclose(fimg);
  33. fimg = fopen("C:/IMGOUT.VGA", "rb");
  34. fread(readback, 1, 256, fimg);
  35. fclose(fimg);
  36. while(1 == 1){
  37. printf("%x ", readback[inca]);
  38. inca++;
  39. if(inca >= 256){
  40. break;
  41. }
  42. if(incx == 15){
  43. incy++;
  44. incx = 0;
  45. printf("\n");
  46. }else incx++;
  47.  
  48. }
  49. getchar();
  50. return(0);
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement