Dec 052017
 
PC Magazine source from issue Vol 8 Num. 20.
File VOL8N20.ZIP from The Programmer’s Corner in
Category Files from Magazines
PC Magazine source from issue Vol 8 Num. 20.
File Name File Size Zip Size Zip Type
CONSTRUC.PAS 659 248 deflated
CURSOR.COM 9 9 stored
DEBUGSCR.ASM 16663 3872 deflated
DEBUGSCR.BAS 7987 2442 deflated
DEBUGSCR.COM 1416 1035 deflated
DEBUGSCR.DOC 2379 1057 deflated
FINDENV.EXE 4512 2897 deflated
FINDENV.PAS 2225 894 deflated
HIDE_COM.WPM 224 158 deflated
MCURSOR.BAT 824 393 deflated
MPADD.ASM 1298 555 deflated
MPIMUL.ASM 2733 915 deflated
MPMUL1.ASM 4062 1172 deflated
MPNEG.ASM 1733 633 deflated
MPSUB.ASM 1338 566 deflated
POPMENU.C 3885 1120 deflated
POPMENU.DEF 337 197 deflated
POPMENU.EXE 4368 2503 deflated
POPMENU.H 707 224 deflated
POPMENU.MAK 360 149 deflated
POPMENU.RC 3682 794 deflated
RED.COM 61 61 stored
SHOW_COM.WPM 210 148 deflated
SHUFFLE.C 2874 1131 deflated
WAIT10.COM 33 33 stored

Download File VOL8N20.ZIP Here

Contents of the DEBUGSCR.DOC file


DEBUGSCR
Command

Michael Mefford November 28, 1989 (Utilities)


Purpose: To convert binary files into ordinary ASCII text files, which can be
transmitted over MCI Mail and similar services, and reconverted to the
ir original binary form using the DOS DEBUG command.

Format:DEBUGSCR filespec [/N]
DEBUG < filename

Remarks: Use the first command shown above to create a DEBUGSCR script file
from a binary file (.COM, .EXE, .WK1, etc.) named in the filespec.
An alternate drive and/or path may be specified. The script file is
automatically given an .SCR extension and is placed in the same
directory as the original file. The script file consists of an ASCII
hex representation of the original binary values, together with the
commands DEBUG needs to recreate the original file. The script file
ends with appropriate instructions to the recipient. These
instructions are ignored by DEBUG and can be suppressed altogether
by using the optional /N switch.

The .SCR file can be edited with a word processor before transmission
to append additional information, such as how to use the utility being
sent. The .SCR file must then be resaved in pure ASCII form.
Similarly, before he reconverts the .SCR file with DEBUG.COM, the
recipient must edit out any header prefixed to the file by the
communications service (for example, the TO: heading added by MCI).
After resaving in ASCII, the recipient simply uses the second command
line shown above, supplying the desired final filename.

DEBUGSCR.BAS will automatically create DEBUGSCR.COM when run once in
BASIC. To assemble the program from its source code listing requires
use of a macro assembler (IBM or Microsoft, Version 2 or later) and the
following commands:

MASM DEBUGSCR;
LINK DEBUGSCR;
EXE2BIN DEBUGSCR DEBUGSCR.COM;


Note: DEBUGSCR will not work with files over 60K.

DEBUG.COM will not write a filename with an .EXE extension to disk.
DEBUGSCR therefore strips this extension and appends a warning to the
recipient that after using DEBUG he must rename the file to include its
proper .EXE extension.




 December 5, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)