Implemented Opcode: mcrf
This commit is contained in:
parent
332f69f36b
commit
0e1353aa71
|
@ -416,8 +416,12 @@ int InstrEmit_crxor(PPCHIRBuilder& f, const InstrData& i) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int InstrEmit_mcrf(PPCHIRBuilder& f, const InstrData& i) {
|
int InstrEmit_mcrf(PPCHIRBuilder& f, const InstrData& i) {
|
||||||
XEINSTRNOTIMPLEMENTED();
|
uint32_t crfd = i.XL.BO >> 2;
|
||||||
return 1;
|
Value* bi = f.LoadCR(i.XL.BI >> 2);
|
||||||
|
|
||||||
|
f.StoreCR(crfd, bi);
|
||||||
|
f.UpdateCR(crfd, bi);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// System linkage (A-24)
|
// System linkage (A-24)
|
||||||
|
|
Loading…
Reference in New Issue