Free software BY Project Software & Development, Inc. This software is furnished for free and may be used and copied as desired. This software or any other copies thereof may be provided or otherwise made available to any other person. No title to and ownership of the software is hereby transferred or allowed. The information in this software is subject to change without notice and should not be construed as a commitment by PROJECT SOFTWARE AND DEVELOPMENT, INC. PROJECT SOFTWARE assumes no responsibility for the use or reliability of this software on any equipment whatsoever. Project Software & Development, Inc. 14 Story St. Cambridge, Ma. 02138 617-661-1444 Program: CVT Author: Robin Miller Date: Fall 1984 Description: This program is a general purpose conversion utility. The original source was taken from an old version of the TDX (catchall) task. This version includes help (available by typing "?" or "/HE"), ranges, and display of EBCDIC characters. ****************************************************************************** Example: >CVT CVT> ? This program is used to convert Decimal, Octal, Hexadecimal, Radix-50, ASCII, and EBCDIC to the equivalent in other radices. Either bytes, a word, a range, or wildcard can be specified. Valid commands are: nnn = decimal number, #nnn = octal number, $nnn = Hexadecimal, "xx = ASCII string, 'x = ASCII byte, %xxx = Radix-50 string, ~xx = EBCDIC string, * = wildcard (displays the entire table). Examples: CVT> 65,66 - Specified bytes are in decimal. #41101 - Specified word is in octal. ~A-Z - Displays EBCDIC A-Z inclusive. CVT> 65,66 Decimal Word/Bytes Octal Word/Bytes Hexadecimal Radix-50 ASCII EBCDIC ------------------ ---------------- ----------- -------- ----- ------ 16961 065,066 #041101 #101,102 $4241 %JXA A,B , CVT> #41101 Decimal Word/Bytes Octal Word/Bytes Hexadecimal Radix-50 ASCII EBCDIC ------------------ ---------------- ----------- -------- ----- ------ 16961 065,066 #041101 #101,102 $4241 %JXA A,B , CVT> ~A-I Decimal Word/Bytes Octal Word/Bytes Hexadecimal Radix-50 ASCII EBCDIC ------------------ ---------------- ----------- -------- ----- ------ 00193 193,000 #000301 #301,000 $00C1 % D3 ,NUL A,NUL 00194 194,000 #000302 #302,000 $00C2 % D4 ,NUL B,NUL 00195 195,000 #000303 #303,000 $00C3 % D5 ,NUL C,NUL 00196 196,000 #000304 #304,000 $00C4 % D6 ,NUL D,NUL 00197 197,000 #000305 #305,000 $00C5 % D7 ,NUL E,NUL 00198 198,000 #000306 #306,000 $00C6 % D8 ,NUL F,NUL 00199 199,000 #000307 #307,000 $00C7 % D9 ,NUL G,NUL 00200 200,000 #000310 #310,000 $00C8 % E ,NUL H,NUL 00201 201,000 #000311 #311,000 $00C9 % EA ,NUL I,NUL CVT> ^Z >