ARM: Decode the enterx and leavex instructions.

This commit is contained in:
Gabe Black
2010-06-02 12:58:09 -05:00
parent 6a4ea7cca9
commit 89133b15da

View File

@@ -187,9 +187,9 @@ def format Thumb32BranchesAndMiscCtrl() {{
const uint32_t op = bits(machInst, 7, 4);
switch (op) {
case 0x0:
return new WarnUnimplemented("leavex", machInst);
return new Leavex(machInst);
case 0x1:
return new WarnUnimplemented("enterx", machInst);
return new Enterx(machInst);
case 0x2:
return new WarnUnimplemented("clrex", machInst);
case 0x4: