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
1 changed files with 2 additions and 2 deletions

View File

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