HEX2DEC 1.4 About the author: My name is Luke Miller, I am 17 and a senior in high school. I am also a Radio Operator/Maintainer (31C) in the U.S Army. My email address is lucas.miller@lycos.com About the program: I wrote this program while I was in detention after school. I was writing things in ASCII and and wanted to change from hex to decimal so i could go to binary. So I wrote the program in 10 minutes and spent another 10 perfecting it. Synopsis: This program converts the range 0 to 7F in hexadecimal to the range 0 to 127 in decimal. The ranges fore mentioned are used in the ASCII character table. The purpose of this program is to convert hex dumps into something more readable. How to use the program: First, execute the program. Second it will prompt the user for the first hex digit (0-7). Next it will prompt the user for the second hex digit (0-F). When entering the second digit, A-F is 10-15.Then it will display the decimal equivilant of the hexadecimal number. After that it will prompt to either exit or rerun the program. Amount of memory: 261 Bytes. Special Notation: \->\ is the Store key. Prgm:HEX2DEC :ClrHome :Disp "HEX TO DEC" :Disp "ASCII" :Disp "CHARACTER" :Disp "CONVERTER" :Disp "VERSION 1.4" :Pause :Lbl 1 :ClrHome :0\->\A :0\->\B :0\->\C :Disp "FIRST HEX DIGIT?" :Input A :If A>7 :Goto 1 :If A<0 :Goto 1 :Disp "SECOND HEX DIGIT?" :Input B :If B<0 :Goto 1 :If B>15 :Goto 1 :(A*16^1)+(B*16^0)\->\C :ClrHome :Disp "DEC CHARACTER" :Disp C :Pause :ClrHome :Disp "RUN AGAIN?" :Disp "1=YES" :Disp "ANYOTHER=NO" :Input Q :If Q=1 :Goto 1 :ClrHome :End