1
0
Fork 0
forked from eden-emu/eden

shader: Implement ICMP

This commit is contained in:
ameerj 2021-03-01 00:18:30 -05:00
parent 20390c0548
commit bce0b1dcca
3 changed files with 84 additions and 16 deletions
src/shader_recompiler/frontend/maxwell/translate/impl

View file

@ -389,22 +389,6 @@ void TranslatorVisitor::IADD3_imm(u64) {
ThrowNotImplemented(Opcode::IADD3_imm);
}
void TranslatorVisitor::ICMP_reg(u64) {
ThrowNotImplemented(Opcode::ICMP_reg);
}
void TranslatorVisitor::ICMP_rc(u64) {
ThrowNotImplemented(Opcode::ICMP_rc);
}
void TranslatorVisitor::ICMP_cr(u64) {
ThrowNotImplemented(Opcode::ICMP_cr);
}
void TranslatorVisitor::ICMP_imm(u64) {
ThrowNotImplemented(Opcode::ICMP_imm);
}
void TranslatorVisitor::IDE(u64) {
ThrowNotImplemented(Opcode::IDE);
}