Adds MCR/MRC to the ARMv7 emitter.

This commit is contained in:
Ryan Houdek
2014-11-16 09:14:02 +00:00
parent 6683b194ff
commit b24197f913
2 changed files with 26 additions and 0 deletions

View File

@ -385,6 +385,10 @@ public:
// Hint instruction
void YIELD();
// System
void MRC(u32 coproc, u32 opc1, ARMReg Rt, u32 CRn, u32 CRm, u32 opc2 = 0);
void MCR(u32 coproc, u32 opc1, ARMReg Rt, u32 CRn, u32 CRm, u32 opc2 = 0);
// Do nothing
void NOP(int count = 1); //nop padding - TODO: fast nop slides, for amd and intel (check their manuals)