.CONVERT HEX PR TO NUM
This subroutine converts a hex pair of alpha characters to a decimal number.
Usage:
PASS <decimal_number> FIELD SHARE? Y
PASS <hex pair> FIELD SHARE? N
GOSUB --- .CONVERT HEX PR TO NUM
* Check for errors
IF --- .CONVERT HEX PR TO NUM NE
Description:
This subroutine converts a hex pair of alpha characters to a decimal number. Both parameters are required, the subroutine will CANCEL if they are not PASSed.
<decimal_number> returns decimal value of <hex_pair> (Required). This must be PASSed with Share "Y" to return the value.
<hex_pair> is the hex pair you want converted to decimal (Required). This must contain exactly 2 characters that are in the range of 00-FF.
To convert a decimal number to a hex pair, see
.CONVERT NUM TO HEX PR. To convert a string to hexidecimal, see
.CONVERT BYTES TO HEX.
Comments:
Read what other users have said about this page or add your own comments.
--
PeteBrower - 2011-08-12