Where can I find a free or open source C++ library to do Binary Coded Decimal math?
|
Here you go. I just wrote this, and am making it public domain. It converts an unsigned bcd to an unsigned int and vice-versa. Use bcd2i() to convert your BCDs to unsigned ints, do whatever math you need, then use i2bcd() to bring the numbers back to BCD.
|
|||||||||||||
|
|
Math is math - it doesn't matter is you add or multiply in base 2, in base 10 or in base 16: the answer is always the same. I don't know how your input and output would be coded, but all you should need is convert from BCD to integer, do the math just like you normally would, and at the end re-convert from integer to BCD. |
|||||||||||||
|
|
As far as I know, conversion errors are not always acceptable. As errors can't be avoided, BCD computations are sometimes a must. XBCD_Math, for example, is a fully featured BCD floating point library. |
|||
|
|