home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / findline / findline.doc < prev    next >
Text File  |  1999-02-05  |  2KB  |  63 lines

  1.                             FindLine 37.2
  2.                    Copyright © 1993 David N. Junod
  3.                       Written by David N. Junod
  4.  
  5.  
  6. INTRODUCTION
  7.  
  8. This little utility was inspired by HitMe, written by Doug Walker of
  9. SAS Institute.  It is used to find the source file (and line number)
  10. of an Enforcer hit.
  11.  
  12. One major difference between this utility and HitMe, is that FindLine
  13. looks into the executable for symbol and debugging information to
  14. obtain the source file and line number.  This version does not
  15. require a map file, object files or source files---it only requires
  16. an executable that contains symbols or LINE (and SRC6) debugging
  17. information.
  18.  
  19.  
  20. USAGE
  21.  
  22. FindLine takes the following arguments:
  23.  
  24.   MODNAME/A,OFFSET/A,HUNK
  25.  
  26. Following is a description of the arguments.
  27.  
  28.   MODNAME/A
  29.   Name of the application.  First looks in <modname>.ld.
  30.  
  31.   OFFSET
  32.   The hexidecimal offset of the Enforcer hit.
  33.  
  34.   HUNK
  35.   The hexidecimal hunk number of the Enforcer hit.  Defaults to zero.
  36.  
  37.  
  38. REQUIREMENTS
  39.  
  40. Your C files must be compiled with SAS/C 5.x or beyond, with LINE
  41. debugging turned on.  Best results are obtained with SAS/C 6.x and
  42. beyond.
  43.  
  44. Assembly files must be compiled with CAPE (or HX68) with DEBUG turned
  45. on.
  46.  
  47. This utility should work with any compiler or assembler that produces
  48. standard LINE debugging hunks.
  49.  
  50. When using Enforcer (and MungWall) you should be using SegTracker for
  51. best results.
  52.  
  53.  
  54. CHANGES
  55.  
  56. 37.2 (11-Mar-93)
  57.  
  58. No longer requires a map file.  Uses asyncio to access the executable
  59. (greatly speeds access).
  60.  
  61.  
  62. ~DNJ~
  63.