home *** CD-ROM | disk | FTP | other *** search
- ;fix for problem with TURBO's standalone debugging option involving garbage
- ;in names pool
-
- ;convert EXE file to BIN file
- ren turbo.exe turbo.bin
- ;load BIN file into DEBUG
- debug turbo.bin
- ;display registers
- r
- ;assemble at ????:b605, where ???? = cs+1000h
- ;e.g., if cs = 37fc, then ???? = 47fc
- a ????:b605
- ;enter new instructions
- nop
- nop
- nop
- ;enter blank line
-
- ;write changes to disk
- w
- ;quit DEBUG
- q
- ;convert BIN file to EXE file
- ren turbo.bin turbo.exe