home *** CD-ROM | disk | FTP | other *** search
/ PC Format (Spanish) 3 / PCF3.iso / gt / gtevald.exe / README.TXT < prev    next >
Text File  |  1996-06-06  |  6KB  |  152 lines

  1. GT for DOS Evaluation Pack - README.TXT 
  2. ==========================================
  3.  
  4. Thanks for your interest in GT. This file contains instructions
  5. for the GT for DOS evaluation.
  6.  
  7. If you're reading this, you've probably already unpacked the archive 
  8. file, and you should have the following programs:
  9.  
  10.     * GT32.EXE      (32-bit GT Compressor)
  11.     * UNGT32.EXE    (32-bit GT Decompressor)
  12.     * DOS4GW.EXE    (32-bit DOS Extender for the above programs)
  13.  
  14.  
  15. GT is a PKZIP-like utility used to compress files to a fraction of their
  16. original size. GT is optimised for maximum decompression speed, and is
  17. particularly useful for developers of CD-based products. 
  18.  
  19. It also features a very simple API (just two functions) and a unique
  20. memory-saving decompression process which avoids the need for separate data
  21. buffers. Note that, for simplicity, GT doesn't generate archive files - it
  22. just concentrates on squashing individual files as much as possible.
  23.  
  24. This evaluation pack provides all you need to test GT on a PC - to use GT
  25. in a retail product, you need to purchase a GT decompression library
  26. (DOS / Win 3.1 / Win 95 / Win NT / PSX / Saturn). 'C' and assembler
  27. source code versions are also available - contact ATD for pricing and
  28. ordering information.
  29.  
  30. Note that the GT utilities supplied are 32-bit; i.e. they require at least
  31. a 80386 processor in order to run.
  32.  
  33.  
  34. GT32 Command Line Parameters
  35. ============================
  36.  
  37. ATD GT32 File Compressor Version 2.11 - (C) 1995,1996
  38.  
  39. Usage:  GT32 <filespec> [-b|l] [-p#] [-x] [-h]
  40.         <filespec> may include wildcards
  41.         -b  - Output file in big endian format
  42.         -l  - Output file in little endian format (default)
  43.         -p# - Pad data at front so file is multiple of # bytes
  44.         -x  - Maximum compression
  45.         -h  - Display this help screen
  46.  
  47.  
  48. <filespec>
  49. ----------
  50.  
  51. This specifies the files you wish to compress - wildcards are accepted.
  52. The output file name(s) are the same as the input one, except that the file
  53. extention is .GTO - take care to ensure that no two input files have the
  54. same first 8 characters!
  55.  
  56.  
  57. -b  - Output file in big endian format
  58. --------------------------------------
  59.  
  60. The compressed files will be output in 'big endian' or Motorola format,
  61. storing the most significant byte first, and least significant byte last.
  62. This is the native format for the Mac, and most games consoles.
  63.  
  64.  
  65. -l  - Output file in little endian format (default)
  66. -----------------------------------------
  67.  
  68. The compressed files will be output in 'little endian' or Intel format,
  69. storing the least significant byte first, and most significant byte last.
  70. This is the native format for the PC.
  71.  
  72.  
  73. -p# - Pad data at front so file is multiple of # bytes
  74. ------------------------------------------------------
  75.  
  76. In order to optimise loading from CD (which tend to load data in fixed
  77. sized chunks), unused data can be placed at the start of the file so that
  78. the file size becomes a multiple of # bytes. For PC CD-ROMs, # = 2048 bytes.
  79.  
  80.  
  81. -x  - Maximum compression
  82. -------------------------
  83.  
  84. Maximum compression may be gained by specifying this switch. Note that
  85. although this may increase compression time, decompression time will not
  86. rise - indeed, if the resultant file size is smaller with maximum
  87. compression, the decompression time should be reduced.
  88.  
  89.  
  90.  
  91. UNGT32 Command Line Parameters
  92. ==============================
  93.  
  94. ATD GT32 File Decompressor Version 2.11 - (C) 1995,1996
  95.  
  96. Usage:  UNGT32 <filespec> [-c] [-p#] [-o] [-h]
  97.         <filespec> may include wildcards
  98.         -c  - Decompresses using C rather than pure 80386
  99.         -p# - Pentium timings where # is processor speed in MHz
  100.         -o  - Test overlapped decompression
  101.         -h  - Display this help screen
  102.  
  103.  
  104. <filespec>
  105. ----------
  106.  
  107. This specifies the files you wish to decompress - wildcards are accepted.
  108. These files should be .GTO files, produced by the GT32 compressor. The
  109. output file name(s) are the same as the input one, except that the file
  110. extention is .TST - take care to ensure that no two input files have
  111. the same first 8 characters!
  112.  
  113.  
  114. -c  - Decompresses using C rather than pure 80386
  115. -------------------------------------------------
  116.  
  117. UNGT32 contains two separate but functionally equivalent decompression
  118. routines - one written in 'C', the other in assembler. This switch (when
  119. used in conjunction with -p#) allows you to monitor the decompression
  120. performance using the 'C' code (which is available separately).
  121.  
  122.  
  123. -p# - Pentium timings where # is processor speed in MHz
  124. -------------------------------------------------------
  125.  
  126. Allows you to monitor the decompression performance (for Pentium machines
  127. only!) by counting the number of cycles that the processor takes inside the
  128. decompression routine.
  129.  
  130.  
  131. -o  - Test overlapped decompression
  132. -----------------------------------
  133.  
  134. Overlapped decompression is when the compressed data is decompressed 'over
  135. itself' in order to minimise memory requirements. This option allows you to
  136. make sure that decompressing in this manner is successful.
  137.  
  138.  
  139.                            Attention To Detail Ltd
  140.                                    Unit 3
  141.                            Nunhold Business Centre
  142.                                   Dark Lane
  143.                                     Hatton
  144.                                  Warwickshire
  145.                                    CV35 8XB
  146.                                 United Kingdom
  147.  
  148.                            Tel: +44 (0) 1926 843444
  149.                            Fax: +44 (0) 1926 843363
  150.                            E-mail: info@atd.co.uk
  151.  
  152.