summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Ville Linde <villelin@mamedev.org>2012-07-11 18:56:39 +0000
committer Ville Linde <villelin@mamedev.org>2012-07-11 18:56:39 +0000
commitb272581c9baec5cb404a5ad9a07dc8e45832c6fd (patch)
tree7238adbc5f72a8e990feece1dd028631c7c476ca /src
parent50c070b086f1b59452ac56244308da2c6d273a13 (diff)
ppcfe.c: PPC4xx supports EIEIO. (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/cpu/powerpc/ppcfe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/powerpc/ppcfe.c b/src/emu/cpu/powerpc/ppcfe.c
index d7c2a5e81b3..0cbb792b5d5 100644
--- a/src/emu/cpu/powerpc/ppcfe.c
+++ b/src/emu/cpu/powerpc/ppcfe.c
@@ -1040,7 +1040,7 @@ bool ppc_frontend::describe_1f(UINT32 op, opcode_desc &desc, const opcode_desc *
return true;
case 0x356: // EIEIO
- if (!(m_context.cap & PPCCAP_VEA))
+ if (!(m_context.cap & (PPCCAP_VEA | PPCCAP_4XX)))
return false;
return true;