Loading…

Method Name: convert_bcd_to_decimal2

Method ID: 0x4050

Method Label:

Method Help:


  • {
  • int temporary1;
  • int temporary2;
  • int hold1;
  • hold1 = igetval();
  • temporary2 = hold1 / 100;
  • hold1 = hold1 % 100;
  • temporary2 = 4096 * (temporary2 / 10) + 256 * (temporary2 % 10);
  • temporary1 = 16 * (hold1 / 10) + hold1 % 10;


Please login for more