cea-sec / miasm

Reverse engineering framework in Python
https://miasm.re/
GNU General Public License v2.0
3.5k stars 473 forks source link

ARM MRS instruction not supported #1087

Open nevermoe opened 5 years ago

nevermoe commented 5 years ago

This is a feature request. Seems Miasm IR does not support ARM's MRS / MSR instruction yet. Any plan to support these instructions in the future?

serpilliere commented 5 years ago

What do you mean when you say "not supported"? They are disassembled, but as those registers may be linked to hardware (mmu, ...) it's a bit hard to implement them, as the implementation will be linked to a special version of ARM.

Have you got some thoughts to share on this?