How do I take a single ASCII character and convert it to its decimal equivelant in MIPs?
Do I simply have to have some conditions to subtract a certain amount from the ascii code to make it its decimal representation?
|
|
How do I take a single ASCII character and convert it to its decimal equivelant in MIPs? Do I simply have to have some conditions to subtract a certain amount from the ascii code to make it its decimal representation? |
|||
|
|
|
|
Here's a simplistic implementation of what Pax wrote (it assumes that hexadecimal digits - A to F are always upper case) File hextodec.c
File hextodec.S
test run
|
|||
|
|
|
|
Yes subtracting 48 from the ASCII value will probably be easiest. |
||
|
|
|
A single hex character should be checked if it's in the range
Anything else is an error. If it does fall within one of those ranges, perform the following:
If you're certain that the character will always be uppercase for the non-decimal digits, you can skip the third step in each of those lists above but it doesn't require a lot of extra code to do it. |
||
|
|