• BCD Mathematicd
    Hi, I need some help with BCD mathematics , like adding / subtracting packed BCD pairs. How can we do it in C? Regards Kishor
  • BCD Mathematicd
    Hi, I need some help with BCD mathematics , like adding / subtracting packed BCD pairs. How can we do it in C? Regards Kishor
  • Converting from BCD
    So I have to convert a number from BCD, however when I do it like this: ((X>>4)*10) + X&0xF It comes out a wrong number, however if I do this: int H = x>>4; int L = x&0xF; return H*10 +...
  • BCD to binary
    How can convert 32-bit BCD to Binary vise-versa.?
  • Converting from BCD
    So I have to convert a number from BCD, however when I do it like this: ((X>>4)*10) + X&0xF It comes out a wrong number, however if I do this: int H = x>>4; int L = x&0xF; return H*10 +...