home *** CD-ROM | disk | FTP | other *** search
/ Amiga GigaPD 3 / Amiga_GigaPD_v3_3of3.iso / netbsd / incoming / binpatch.array.readme < prev    next >
Text File  |  1993-06-25  |  559b  |  28 lines

  1. This version of binpatch operates also on array's.
  2. It replaces the version of binpatch that I uploaded Jan 25 1994
  3. For a variable:
  4. short views[10] = {0,0,1,0,1,1,1,0,1,1};
  5.  
  6. USING INDEXES So instead of
  7.    binpatch -w -o 4 -s _view a.out
  8.  
  9. do
  10.    binpatch -w -s '_view[2]' a.out
  11.  
  12. Using OFFSETS: Also:
  13.    binpatch -s '_view[3]' a.out
  14.  
  15. behaves just like:
  16.    binpatch -o 3 '_view' a.out
  17. because '-b -w -l' were not specifically used.
  18.  
  19. Of course you can also use the `-r' option!
  20.  
  21. This version has nicer help also.
  22.   Type:
  23.     binpatch
  24.   and
  25.     binpatch -HELP
  26.  
  27. -Rob
  28.