ppcexec: Fix bcctr templated parameters.

This commit is contained in:
joevt 2024-03-24 22:50:45 -07:00 committed by dingusdev
parent c781820bf6
commit effe0198ce

View File

@ -263,11 +263,11 @@ void ppc_opcode19() {
if (for601) if (for601)
ppc_bcctr<RC0, IS601>(); ppc_bcctr<RC0, IS601>();
else else
ppc_bcctr<RC1, NOT601>(); ppc_bcctr<RC0, NOT601>();
break; break;
case 1057: case 1057:
if (for601) if (for601)
ppc_bcctr<RC0, IS601>(); ppc_bcctr<RC1, IS601>();
else else
ppc_bcctr<RC1, NOT601>(); ppc_bcctr<RC1, NOT601>();
break; break;