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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
11/22/02 20:47
Read: times


 
#32970 - RE: Dumb...ascii to decimal question
Do the same with 16 or 32 math routines

Pseudocode:

(Number / 10000000)+30h = 1st ascii char
(Rest / 1000000)+30h = 2nd ascii char
(Rest / 100000)+30h = 3rd ascii char
(Rest / 10000)+30h = 4th ascii char
(Rest / 1000)+30h = 5th ascii char
(Rest / 100)+30h = 6th ascii char
(Rest / 10)+30h = 7th ascii char
rest + 30h are the 8th ascii char (units)


List of 5 messages in thread
TopicAuthorDate
Dumb...ascii to decimal question            01/01/70 00:00      
RE: Dumb...ascii to decimal question            01/01/70 00:00      
RE: Dumb...ascii to decimal question            01/01/70 00:00      
RE: Dumb...ascii to decimal question            01/01/70 00:00      
RE: Dumb...ascii to decimal question            01/01/70 00:00      

Back to Subject List