home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / ASM / DATTOH10.ZIP / README.TXT < prev   
Encoding:
Text File  |  1997-09-28  |  2.4 KB  |  55 lines

  1. What is DATTOHEX?
  2.  
  3. DATTOHEX is a programming utility I wrote so that I could include binary
  4. files within an executable program.  After running a file through DATTOHEX
  5. you are left with an ascii text file in a format ready to "include" in the
  6. data segment of your program.  The first character of the file is "A".  This
  7. will have to be edited to the name of your zero terminated string variable.
  8. The original file is opened in read-only mode and is not effected.
  9.  
  10. DATTOHEX is a command line tool created for MSDOS use but it can be used to
  11. create files for Windows programs.  DATTOHEX requires no installation.
  12. It can reside in the directory you are working in or in any directory that's
  13. included in your path statement.  DATTOHEX is not a free program but it is
  14. in no way crippled.  At a cost of only $2.00 it is hoped that you will feel
  15. comfortable paying for it.  Feel free to distribute the program as you will
  16. but please include this README.TXT file along with it.
  17.  
  18. To use DATTOHEX, lets assume you have a file named SPRITE1.BIN and you wish
  19. to create a file called SPRITE1.INC to "include" in your program.
  20. Just enter the following.
  21.  
  22. DATTOHEX SPRITE1.BIN SPRITE1.INC <ENTER>
  23.  
  24.  
  25. If you have questions about DATTOHEX, please e-mail them to me at:
  26. beanpole@sprynet.com
  27.  
  28. If you like DATTOHEX look for other programming utilities I have written.
  29.  
  30. STRIPPCX - Strips the header and palette from a PCX file (any size).  This
  31. allows you to use separate graphics files in your programs that are not
  32. recognized by graphics viewers.
  33.  
  34. PCXTODAT - Unpacks a PCX file to a binary data string and creates an RGB
  35. palette file. Open the external files from within your program or imbed them
  36. into your executables by passing them through DATTOHEX and use them as
  37. "include" files.
  38.  
  39. DISSECT - A very small and very fast utility for chopping up a file to fit
  40. on 1.4 meg floppies.
  41.  
  42. FILECOMP - Compares two files, byte for byte.  Good for verifying that DISSECT
  43. did it's job properly.
  44.  
  45. KODE - Used to scramble a file of any size and type. I use it to protect
  46. sensitive text files. Fortunately KODE will also de-scramble a scrambled file.
  47.  
  48. All of these utilities were written in assembly and are very small executable
  49. files.  I have used them for some time in my own programming and find them
  50. indispensable.
  51.  
  52.                         Keep Programming
  53.  
  54.                                   M. Thompson
  55.