home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / tools / filemod / filemod2.doc < prev   
Text File  |  1989-01-21  |  5KB  |  114 lines

  1. FileMod2  byte editor    by Doug Schafer '85   rewritten by J. E. Arkay 1/21/89
  2.  
  3. A user-friendly utility for making quick changes to programs.  It's easy to
  4. change messages, NOP out jumps, etc.
  5.  
  6. NEVER use a byte editor on your only copy of ANYTHING !!  Make a backup !!
  7.  
  8. Syntax:   FILEMOD2 [d:][\path\][filename.ext]
  9.  
  10. You MUST give a target filename.ext on the command line.
  11. Run it and hit F1 for help.
  12. Runs on CGA or Mono screen.
  13.  
  14. NIFTY USES:
  15. To make FORMAT from DOS 3.3 beep when finished: search for Complete, TAB over to
  16. the Hex field and change the very next byte to 07h (the ASCII code for beep).
  17. If you put 7 in the ASCII field, you'll just see 'Format Complete7'.
  18.  
  19. Messages in most programs can be changed so long as you don't overwrite the $
  20. or 0 that signals their end.  It can be very useful to change help or error
  21. messages, many of which are totally confusing.
  22.  
  23. USER INTERFACE:
  24. Hopefully, most keys are shown at the bottom of the screen or obvious.
  25. F10 promps for new HEX record number.  All numbers are HEX.
  26. 'Record' here means 256d bytes.  If a .COM file is loaded, the first record
  27. is 1 so it starts at 100h; otherwise, the first record is 0.
  28.  
  29. SEARCHING (F2 or CTRL-S):
  30. ESC or F2 exits search string entry.
  31. Searches go through the entire file FOLLOWING the cursor.
  32. Hex takes 2-character bytes separated with spaces; they can be either case.
  33. Case-Insens(itive) is like Exact except letter (alpha) characters match
  34. regardless of case.  You can enter special characters like TAB or line (ALT-
  35. keypad) characters, too; but you can't enter the HEX PFX (default _) character.
  36.  
  37. The search function is not blindingly fast: on an 8 MHz AT, it takes about
  38. 2 1/2 sec to search to the end of a 220K file in Exact mode, and Case-Insens
  39. searches are about half the speed of Exact and Hex.
  40.  
  41. To to look for a hex byte in Exact or Case-Insens, preceed the byte with _.
  42.  
  43. EXAMPLE:  Snarf_0D_0a_00  will find 'Snarf',0Dh,0Ah,0
  44.       In Case-Insens mode, it will also find 'sNaRf',0Dh,0Ah,0
  45.       
  46. CTRL-PGUP (unlike PGUP, etc) puts the cursor in the upper left corner, so you
  47. can search the entire file without worrying where the cursor was.
  48.  
  49.  
  50. MOUSE:
  51. If you use a Mouse Systems mouse with the standard MOUSESYS driver alone,
  52. you will find that the left button toggles Help (F1) and the middle button
  53. toggles Search (F2).
  54.  
  55.  
  56. MODIFYING FM:
  57. If you search for SCAN CODE TABLE you can change the 21 action keys.
  58. The first is 42, the scan code for F8, repeat search.
  59. To make F3 do that, change the 42 to 3D; for ALT-R, use 13, etc.
  60. You can find the Auxilliary scan codes in books like Norton's Programmer's
  61. Guide, where they are shown (in decimal !) on p. 135.
  62.  
  63. Eleven changeable defaults are in record 0002 in the form byte=FUNCTION.
  64. To change the color attribute for the ASCII text display, find the string
  65. =ASCII.  The byte immediately preceding it is 3Dh (the =) and the byte before
  66. that (which is 07 for white on black) can be modified to change the color.
  67. For example, changing it to 1E will make that display yellow on blue (on a
  68. color monitor).  The color code is standard IBM (but different from BASIC and
  69. ANSI.SYS):
  70.         0  black        4  red
  71.         1  blue            5  magenta
  72.         2  green        6  brown (yellow)
  73.         3  cyan            7  white
  74.  
  75. The first hex digit determines the background and the second the foreground.
  76. Adding 8 to the foreground color produces their "intense" version; intense brown
  77. is yellow, intense black is gray.
  78. Adding 80h to the background color causes the foreground to flash.  For example,
  79. 1E (E=6+8 Hex) is yellow on blue while 9E is flashing yellow on blue.
  80.  
  81. On the Mono screen, 0 is black, 1-7 is white, but for the foreground (lo)
  82. nibble, 01 is Underlined.
  83.  
  84. These can be modified:
  85.  
  86.    LINE NOS      Color for line numbers; default is 04=red on black
  87.    HEX DISPLAY   Color for the HEX display; default is 06=brown on black
  88.    HEX EDIT CRSR Color for the one changed HEX digit when editing in HEX mode
  89.          and only one digit has been changed; default is 
  90.          F0=flashing black on white
  91.    ASCII DISPLAY Color of the ASCII part of the display
  92.    ACTIVE CRSR   Color of the active cursor; default is 70=black on white.
  93.    SLAVE CRSR    Color of the cursor on the inactive field; default is
  94.             01=blue on black (shows as an underline on Mono screens)
  95.    HELP SCREEN   Color of the Help screen; default is 74=red on white
  96.    HELP BORDER   Color of the Help border; default is 1C=intense red on blue
  97.  
  98.    BOOT ACTIVE   00 for the ASCII field to be active when the program is
  99.          loaded.  Change it to 01 for the HEX field.
  100.    GRAPHIC CHARS Default is 00, only text characters displayed in the ASCII
  101.          field when the program is loaded. 01 will show all characters.
  102.    HEX PFX     The character used in an ASCII search string to preface a
  103.          hex number.  The default is _ which is ASCII 5Fh.
  104.          To change _ to ` for example, change the 5F to 60.
  105.  
  106.  
  107. Please include the .ASM source if you post this program; someone may make
  108. useful changes, or even learn something.
  109. If you find a bug, or wish to send me lots of money, write to:
  110.  
  111.         J. E. Arkay
  112.         PO Box 9747
  113.         Baltimore, MD  21204
  114.