mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 13:44:31 +01:00
IR: Split off A32 specific opcodes
This commit is contained in:
parent
b1f0cf9278
commit
8bef20c24d
12 changed files with 243 additions and 231 deletions
|
|
@ -31,6 +31,10 @@ Value IREmitter::Imm64(u64 imm64) {
|
|||
return Value(imm64);
|
||||
}
|
||||
|
||||
void IREmitter::PushRSB(const LocationDescriptor& return_location) {
|
||||
Inst(Opcode::PushRSB, {IR::Value(return_location.Value())});
|
||||
}
|
||||
|
||||
Value IREmitter::Pack2x32To1x64(const Value& lo, const Value& hi) {
|
||||
return Inst(Opcode::Pack2x32To1x64, {lo, hi});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue