49c49,54
< return new WarnUnimplemented("cps", machInst);
---
> const bool enable = bits(machInst, 19, 18) == 0x2;
> const uint32_t mods = bits(machInst, 4, 0) |
> (bits(machInst, 8, 6) << 5) |
> (bits(machInst, 17) << 8) |
> ((enable ? 1 : 0) << 9);
> return new Cps(machInst, mods);