Reduced confusion caused by the m68k test being out of date

* added a new case branch to account for floating point operands.
This commit is contained in:
Inokentiy Babushkin 2016-05-13 09:08:36 +02:00
parent e488a7ed8e
commit 10827a6f32
1 changed files with 4 additions and 0 deletions

View File

@ -115,6 +115,10 @@ static void print_insn_detail(cs_insn *ins)
printf("\t\taddress mode: %s\n", s_addressing_modes[op->address_mode]);
break;
case M68K_OP_FP_SINGLE:
printf("\t\toperands[%u].type: FP_SINGLE\n", i);
printf("\t\t\toperands[%u].simm: %f\n", i, op->simm);
break;
}
}