Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
01/31/01 07:14
Read: times


 
#8866 - RE: Decimal to hexadecimal routine
You can build the routine...
Take the multibyte mathe routine, you need only MUL and ADD.
for example:
decimal 1576 convert to hex algo.:
X = 0
X = X + 1 first decimal
X = X * 10
X = X + 5
X = X * 10
X = X + 7
X = X * 10
X = X + 6 last decimal
now in X is the result in hex.

You can find the math routines in the Code Library.

Sascha

List of 4 messages in thread
TopicAuthorDate
Decimal to hexadecimal routine            01/01/70 00:00      
RE: Decimal to hexadecimal routine            01/01/70 00:00      
RE: Decimal to hexadecimal routine            01/01/70 00:00      
RE: Decimal to hexadecimal routine            01/01/70 00:00      

Back to Subject List