mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 06:58:15 +01:00
IR: Add IR instruction ZeroExtendToQuad
This commit is contained in:
parent
af848c627d
commit
28ccd85e5c
5 changed files with 21 additions and 6 deletions
|
|
@ -396,6 +396,10 @@ U32 IREmitter::ZeroExtendToWord(const UAny& a) {
|
|||
}
|
||||
}
|
||||
|
||||
U128 IREmitter::ZeroExtendToQuad(const UAny& a) {
|
||||
return Inst<U128>(Opcode::ZeroExtendLongToQuad, ZeroExtendToLong(a));
|
||||
}
|
||||
|
||||
U64 IREmitter::ZeroExtendWordToLong(const U32& a) {
|
||||
return Inst<U64>(Opcode::ZeroExtendWordToLong, a);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue