home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / turbopas / tp5patch.arc / TD1PAT.ARC / FIXTPC.2 < prev    next >
Text File  |  1988-10-23  |  352b  |  21 lines

  1. ;fix for problem with TPC /V option involving garbage in names pool
  2.  
  3. ;convert EXE file to BIN file
  4. ren tpc.exe tpc.bin
  5. ;load BIN file into DEBUG
  6. debug tpc.bin
  7. ;assemble at cs:b7ba
  8. a b7ba
  9. ;enter new instructions
  10. nop
  11. nop
  12. nop
  13. ;enter blank line
  14.  
  15. ;write changes to disk
  16. w
  17. ;quit DEBUG
  18. q
  19. ;convert BIN file to EXE file
  20. ren tpc.bin tpc.exe
  21.