diff options
author | 2007-12-17 16:39:40 +0000 | |
---|---|---|
committer | 2007-12-17 16:39:40 +0000 | |
commit | df34329a478833efbd542a424ce1813a11214d4a (patch) | |
tree | 97960620a0153b267478c8f9ae93e55582ecaefa /src/emu/cpu/powerpc/ppc_dasm.c | |
parent | c82a966b3b72d79ac3ce394980d6b5806e752160 (diff) |
Changes for MAME 0.121u3.mame0121u3
Diffstat (limited to 'src/emu/cpu/powerpc/ppc_dasm.c')
-rw-r--r-- | src/emu/cpu/powerpc/ppc_dasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/powerpc/ppc_dasm.c b/src/emu/cpu/powerpc/ppc_dasm.c index 4d30f9987d1..2f24713bab8 100644 --- a/src/emu/cpu/powerpc/ppc_dasm.c +++ b/src/emu/cpu/powerpc/ppc_dasm.c @@ -208,7 +208,7 @@ typedef struct * and print instructions. */ -static IDESCR itab[] = +static const IDESCR itab[] = { { "add", D_OP(31)|D_XO(266), M_RT|M_RA|M_RB|M_OE|M_RC, F_RT_RA_RB, FL_OE|FL_RC }, { "addc", D_OP(31)|D_XO(10), M_RT|M_RA|M_RB|M_OE|M_RC, F_RT_RA_RB, FL_OE|FL_RC }, @@ -423,7 +423,7 @@ static IDESCR itab[] = * Use an index of BI&3 into this table to obtain the CR field bit name. */ -static char crbit[][4] = { "lt", "gt", "eq", "so" }; +static const char *const crbit[4] = { "lt", "gt", "eq", "so" }; /* |