Dec 112017
Another ASCII popup for DV. | |||
---|---|---|---|
File Name | File Size | Zip Size | Zip Type |
AT-PIF.DVP | 416 | 93 | deflated |
DVASCII.COM | 4149 | 1809 | deflated |
DVASCII.DOC | 11187 | 3430 | deflated |
TPCREAD.ME | 199 | 165 | deflated |
Download File DVASCII2.ZIP Here
Contents of the DVASCII.DOC file
DVASCII
Desqview Ascii Table
(c) Daniel T. Travison Jr., 1987
GEnie Email: D.TRAVISON
Hotel Henge 518-399-3073 (10pm-10am)
Non-Electronic Mail:
P.O. Box 165
Burnt Hills, NY 12027
DVASCII is an ascii chart for Quarterdeck's Desqview version 2.0.
It is designed to provide a quick and easy tool to replace your
present method for looking up IBM ascii character codes.
You are granted permission to distribute this program with the
stipulation that NO remittance is accepted for either the program
or handling and distribution charges. This program may not be
distributed with other programs on disk if a charge is incurred
for any program or for the medium. In other words, if there is
a charge involved then you do not have permission to include this
program, period!
The author makes no warranties expressed or implied as to the quality or
performance of this program. The author will not be held liable for any
direct, indirect, incidental or consequential damages resulting from
the use of this program. Your use of this program constitutes your
agreement to this disclaimer and your releasing the author from any form
of liability or litigation.
Alright, now that the pleasent introdutions are out of the way, I will
tell you why you will like this program.
I have tried several programs that provide an ascii reference table.
One of which works well with Desqview but is relatively slow and also
inconvient to use. I have taken some of the routines from the
documentation for Desqview 2.0 and written a small program that takes
advantage of three of these routines.
1: Checks for the presence of Desqview and exits with an error
if Desqview is not found.
2: The program writes directly to the screen buffer provided by
Desqview.
3: The program releases the rest of the time slice when ever it
finishes a screen and also after determining that no
key has been pressed.
Most of the speed is derived from the fact that each screen is hard
coded in memory and simply copied to the buffer provided by Desqview.
The extra memory required for this is offset by the memory saved by
restricting the screen size in the setup. The program only uses
an area 18 rows by 24 columns. You will notice the setup has the
maximum size set to these values as well. Desqview allocates 864
bytes for the screen buffer as opposed to 4000 bytes for a full
screen buffer. The program itself runs in a 5k window. Total memory
to run the program totals 9k. This includes the screen buffer as well
as memory needed for shell.com and other Desqview features.
Another benefit of this method is that all the code normally included
for determining the Video mode and the refresh logic is eliminated.
This proved a major benefit since I have just started to learn assembler
and have enough to worry about.
Requirements:
Desqview 2.0 :You MUST have this version or later
Dvascii.com :the executable program
At-pif.dvp :the program information file used by desqview
(see next section)
Reasonable compatability with the 'standard' IBM is assumed when
running this program. I use interupt 16h to check for key
strokes pending and to retrieve the same.
Program information file:
I have provided the 2 screens from change a program to illustrate the
required settings should the At-pif.dvp be missing or incorrect.
Five points should be noted:
1: Memory size is set to 5k. More is not needed, less will
produce an error message.
2: Maximum and starting screen size is set to 18 for the height
and 24 for the width. Increasing values will distort the
display. Decreasing these values can cause serious problems
when the program tries to write to memory that is not
allocated to it.
3: All memory options on the Advanced screen are set to zero.
changing this will only allocate memory to the program
that will not be used and is therefore wasted.
4: The close on exit to DOS option is set to yes. This
allows Desqview to use its own shell.com instead of
command.com to load the program. The saves a nice
chunk of memory that would otherwise be wasted.
5: The program will appear on the Add a program (other)
menu as ASCII TABLE. Keep this in mind in case you have
a problem finding it.
Change a Program
Program Name............: ASCII TABLE
Keys to Use on Open Menu: AT Memory Size (in K): 5
Program...: DVASCII.COM
Parameters:
Directory.: C:\UTILITY\GENERAL
Options:
Writes directly to screen......: [N]
Displays graphics information..: [N]
Can be swapped out of memory...: [Y]
Requires floppy diskette.......: [N]
Press F1 for advanced options Press when you are DONE
Change a Program Advanced Options
System Memory (in K).......: 0 Maximum Program Memory Size (in K)..:
Script Buffer Size.......: 0 Maximum Expanded Memory Size (in K):
Text Pages: 1 Graphics Pages: 0 Initial Mode: Interrupts: 00 to FF
Window Position:
Maximum Height: 18 Starting Height: 18 Starting Row...: 1
Maximum Width.: 24 Starting Width.: 24 Starting Column: 1
Shared Program
Pathname..:
Data......:
Options:
Close on exit to DOS.........: [Y] Uses its own colors.........: [N]
Allow Close Window command...: [Y] Runs only in foreground.....: [Y]
Uses math coprocessor........: [N] Keyboard conflict (0-4).....: [0]
Press F1 for standard options Press when you are DONE
Display Control:
Five keys are used to control the program function.
** 1: Page Down: Displays the next page of the ascii chart.
** 2: Page Up: Displays the previous page of the ascii chart.
3: Home: Jumps to the first page of the ascii chart.
4: End: Jumps to the last page of the ascii chart.
5: Escape: Exits the program. Close the window when
the 'Close on exit to DOS' option is set to Y.
** NOTE: Paging is circular in that paging down when on the
last chart page returns to the first page. Paging up when
on the first display page will move to the last page.
Compatability:
This program has been successfully run on the following
three machines:
1: Compaq 386 (color)
2: IBM 8mhz AT (monochrome graphics)
3: My 8mhz XT. (color) This machine is an example
of the extreme in that the parts were purchased
from at least 7 different manufactures, none of
which are known for their large market share.
The CPU is a NEC V20 and the BIOS is by PHEONIX
(version 2.26)
The End:
I have written this program because I have not found a
satisfactory alternative. I have learned a little about
assmebler along the way and consider that sufficient
compensation for the time and effort spent on this
program. I do have an EGO so feel free to send comments
using one of the methods provided above. Users that are
in the same stages of learning assembler as myself may
have a copy of the source as an example of actual uses
for the routines Quarterdeck provides. Experienced
assembler programmer's will be bored and only point out
all the different areas where my ignorance of assembler.
December 11, 2017
Add comments