shader: Implement POPC

This commit is contained in:
ameerj 2021-02-26 21:41:46 -05:00
parent cc55d28949
commit a8c41c50d3
8 changed files with 59 additions and 12 deletions

View file

@ -653,18 +653,6 @@ void TranslatorVisitor::PLONGJMP(u64) {
ThrowNotImplemented(Opcode::PLONGJMP);
}
void TranslatorVisitor::POPC_reg(u64) {
ThrowNotImplemented(Opcode::POPC_reg);
}
void TranslatorVisitor::POPC_cbuf(u64) {
ThrowNotImplemented(Opcode::POPC_cbuf);
}
void TranslatorVisitor::POPC_imm(u64) {
ThrowNotImplemented(Opcode::POPC_imm);
}
void TranslatorVisitor::PRET(u64) {
ThrowNotImplemented(Opcode::PRET);
}