home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / utils / easyun.zip / BANNER.TXT < prev    next >
Text File  |  1986-12-03  |  2KB  |  69 lines

  1. BANNER.UNP
  2.  
  3. Program:  Banner Builder from Power Up (tm)
  4.       Copyright 1983 Software Publishing Corp. A:01
  5.  
  6. Instructions:
  7.  
  8.       Copy BANNER.EXE to some other disk where DEBUG can get to it.
  9.  
  10.       Rename BANNER.EXE to something other than an .EXE extension.
  11.       DEBUG does not allow writing to an .EXE file.
  12.       I will name it BANNER.DBD
  13.  
  14.       Type:
  15.       -DEBUG BANNER.DBD
  16.  
  17.       Type:
  18.       -S CS:0 L FFFF CD 13
  19.  
  20.           This DEBUG command searches BANNER.DBD for all INT 13's.
  21.           If you don't know, INT 13 is the disk sector read interr
  22.       You should find 3 such interrupts at the following locat
  23.  
  24.       XXXX:AA44
  25.       XXXX:AC72
  26.       XXXX:AC80
  27.  
  28.       The XXXX above is different on every machine depending on wher
  29.       DOS decides to load it into memory.
  30.       The 3 Hexadecimal number following the XXXX: indicate the of
  31.       location of each INT 13.
  32.       The second number, AC72, is the first diskette sector read t
  33.       BANNER.EXE makes.
  34.       We are going to change the CD 13 bytes to EB 15 which will c
  35.       the program to jump over all the diskette sector reads and g
  36.       right into BANNER without looking at drive A:.
  37.       For your information, EB 15 tells the program to jump over 1
  38.       bytes.
  39.  
  40.       Enter the following:
  41.  
  42.       -E AC72
  43.       XXXX:AC72   CD.EB     13.15
  44.       Make sure to press the space bar after entering EB and a car
  45.       return after entering the 15.
  46.       The space bar moves DEBUG to the next byte.
  47.       The carriage return terminates the entering of bytes and ret
  48.       you to the DEBUG prompt.
  49.       Now, write the file.
  50.  
  51.       Enter the following:
  52.  
  53.       -W
  54.       Writing 16180 bytes
  55.  
  56.       Then quit by entering the following:
  57.  
  58.       -Q
  59.  
  60.       You should now be at your DOS prompt.
  61.       Now, rename BANNER.DBD back to BANNER.EXE and you now have a
  62.       clean program, one that will not look to drive A: for the orig
  63.       diskette.
  64.  
  65. Remember, do not distribute this program freely.  It's against the law.
  66. These instructions are only intended to make the use of this program easier.
  67.  
  68. Author:  BABY HACK
  69.