Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 26cb082

Browse files
committed
Added a README for dbgtool
1 parent de39362 commit 26cb082

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

extra/dbgtool/README.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
To use dbgtool.py you need to pass it the MS-DOS executable binary file,
2+
and optionally the output debug.exe script file name.
3+
4+
Example:
5+
6+
$ python ./dbgtool.py -i ./nc.exe -o nc.scr
7+
8+
This will create a ASCII text file with CRLF line terminators called
9+
nc.scr.
10+
11+
Such file can then be converted to its original portable executable with
12+
the Windows native debug.exe, that is installed by default in all Windows
13+
systems:
14+
15+
> debug.exe < nc.scr
16+
17+
To be able to execute it on Windows you have to rename it to end with
18+
'.com' or '.exe':
19+
20+
> ren nc_exe nc.exe
21+
22+
23+
Happy hacking!
24+
Bernardo Damele A. G. <[email protected]>

0 commit comments

Comments
 (0)