mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 14:08:17 +01:00
Implement thumb1_BIC_reg
This commit is contained in:
parent
98a64a92b1
commit
d11df9067d
8 changed files with 31 additions and 2 deletions
|
|
@ -132,6 +132,10 @@ IR::ValuePtr IREmitter::Or(IR::ValuePtr a, IR::ValuePtr b) {
|
|||
return Inst(IR::Opcode::Or, {a, b});
|
||||
}
|
||||
|
||||
IR::ValuePtr IREmitter::Not(IR::ValuePtr a) {
|
||||
return Inst(IR::Opcode::Not, {a});
|
||||
}
|
||||
|
||||
void IREmitter::SetTerm(const IR::Terminal& terminal) {
|
||||
ASSERT_MSG(block.terminal.which() == 0, "Terminal has already been set.");
|
||||
block.terminal = terminal;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue