Java Utililty Methods BCD Create
List of utility methods to do BCD Create
HOME
Java
B
BCD Create
Description
The list of methods to do BCD Create are organized into topic(s).
Method
int
bcdValue(byte value)
Convert byte to BCD integer.
return
10 * (0x0f & (value >> 4)) + (0x0f & value);