shader: Implement HFMA2

This commit is contained in:
FernandoS27 2021-03-21 01:03:21 +01:00 committed by ameerj
parent 76c8a962ac
commit 28dff6a629
5 changed files with 192 additions and 20 deletions

View file

@ -181,26 +181,6 @@ void TranslatorVisitor::GETLMEMBASE(u64) {
ThrowNotImplemented(Opcode::GETLMEMBASE);
}
void TranslatorVisitor::HFMA2_reg(u64) {
ThrowNotImplemented(Opcode::HFMA2_reg);
}
void TranslatorVisitor::HFMA2_rc(u64) {
ThrowNotImplemented(Opcode::HFMA2_rc);
}
void TranslatorVisitor::HFMA2_cr(u64) {
ThrowNotImplemented(Opcode::HFMA2_cr);
}
void TranslatorVisitor::HFMA2_imm(u64) {
ThrowNotImplemented(Opcode::HFMA2_imm);
}
void TranslatorVisitor::HFMA2_32I(u64) {
ThrowNotImplemented(Opcode::HFMA2_32I);
}
void TranslatorVisitor::HMUL2_reg(u64) {
ThrowNotImplemented(Opcode::HMUL2_reg);
}