home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / GETROM.ZIP / ROMSAVAT.C < prev    next >
Text File  |  1985-12-31  |  488b  |  33 lines

  1. /* Romsavat writes the AT rom to a file called
  2.    atrom.  Must be compliled with the large model
  3.    option.
  4. */
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. main()
  8. {
  9. FILE *stream;
  10. unsigned int c;
  11. long x;
  12. char *d;
  13. /* starting address of at rom in seg:offset fmt */
  14. d = 0xf0000000;
  15. /* size of at rom */
  16. x = 0x10000;
  17. /* open the file in binary mode! */
  18. stream = fopen("atrom","wb");
  19. while (x > 0)
  20.     {
  21.     c = *d;
  22.     putc(c,stream);
  23.     *d++;
  24.     x--;
  25.     }
  26. fclose(stream);
  27. }
  28.  
  29.  
  30.  
  31.  
  32.  
  33.