From 26cb082fc303a8cca4d98787a003c72157988015 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Mon, 12 Jan 2009 23:17:15 +0000 Subject: [PATCH] Added a README for dbgtool --- extra/dbgtool/README.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 extra/dbgtool/README.txt diff --git a/extra/dbgtool/README.txt b/extra/dbgtool/README.txt new file mode 100644 index 000000000..03711f0a1 --- /dev/null +++ b/extra/dbgtool/README.txt @@ -0,0 +1,24 @@ +To use dbgtool.py you need to pass it the MS-DOS executable binary file, +and optionally the output debug.exe script file name. + +Example: + +$ python ./dbgtool.py -i ./nc.exe -o nc.scr + +This will create a ASCII text file with CRLF line terminators called +nc.scr. + +Such file can then be converted to its original portable executable with +the Windows native debug.exe, that is installed by default in all Windows +systems: + +> debug.exe < nc.scr + +To be able to execute it on Windows you have to rename it to end with +'.com' or '.exe': + +> ren nc_exe nc.exe + + +Happy hacking! +Bernardo Damele A. G.