Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de39362 commit 26cb082Copy full SHA for 26cb082
1 file changed
extra/dbgtool/README.txt
@@ -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