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