Why this opcode doesn't work properly on ARM
Writing the opcodes on ARM, I face an error.
8054: e92d1fff push {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, fp, ip}
The above is the result of disassembly by objdump; \xe9\x2d\x1f\xff is the
same to push {r0-r12}.
But in another program, this opcode doesn't work properly like:
1e75: e9 .byte 0xe9
1e76: 1f2d .short 0x1f2d
1e78: Address 0x06001e78 is out of bounds.
Any ideas?
No comments:
Post a Comment