Implement some loop instructions & add loop test.

This commit is contained in:
Skyth
2024-09-12 16:42:26 +03:00
parent c82c4688e7
commit 6f32dc35a2
4 changed files with 44 additions and 15 deletions

View File

@@ -5663,6 +5663,8 @@ static int decode_insn_powerpc(bfd_vma memaddr, disassemble_info* info, int bige
insn = bfd_getl32(buffer);
oinsn->instruction = insn;
memset(oinsn->operands, 0, sizeof(oinsn->operands));
/* Get the major opcode of the instruction. */
op = PPC_OP(insn);