mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-11 08:56:27 +00:00
microinstruction: Implement HasAssociatedPseudoOperation
This commit is contained in:
@@ -251,6 +251,10 @@ void Inst::DecrementRemainingUses() {
|
||||
use_count--;
|
||||
}
|
||||
|
||||
bool Inst::HasAssociatedPseudoOperation() const {
|
||||
return carry_inst || overflow_inst || ge_inst;
|
||||
}
|
||||
|
||||
Inst* Inst::GetAssociatedPseudoOperation(Opcode opcode) {
|
||||
// This is faster than doing a search through the block.
|
||||
switch (opcode) {
|
||||
|
||||
Reference in New Issue
Block a user