diff options
Diffstat (limited to 'src/emu/cpu/hd6309')
-rw-r--r-- | src/emu/cpu/hd6309/6309ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/hd6309/6309ops.c b/src/emu/cpu/hd6309/6309ops.c index e87bc4320e0..55c44179466 100644 --- a/src/emu/cpu/hd6309/6309ops.c +++ b/src/emu/cpu/hd6309/6309ops.c @@ -478,10 +478,10 @@ OP_HANDLER( bra ) } /* $21 BRN relative ----- */ +static UINT8 brn_temp; // hack around GCC 4.6 error because we need the side effects of IMMBYTE OP_HANDLER( brn ) { - UINT8 t; - IMMBYTE(t); + IMMBYTE(brn_temp); } /* $1021 LBRN relative ----- */ |