From 1a37b36e7285a87e49c00f12f746d80a36041e59 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 3 Dec 2014 09:26:07 -0800 Subject: Unbreak PC indexed addressing modes in decoder --- 68kinst.c | 9 --------- 1 file changed, 9 deletions(-) (limited to '68kinst.c') diff --git a/68kinst.c b/68kinst.c index eaeb2e4..a05c75c 100644 --- a/68kinst.c +++ b/68kinst.c @@ -140,15 +140,6 @@ uint16_t *m68k_decode_op_ex(uint16_t *cur, uint8_t mode, uint8_t reg, uint8_t si dst->params.immed = ext << 16 | *(++cur); break; case 3: -#ifdef M68020 - //TODO: Implement me for M68020+ support; -#else - dst->addr_mode = MODE_PC_INDEX_DISP8; - ext = *(++cur); - dst->params.regs.sec = ext >> 11;//includes areg/dreg bit, reg num and word/long bit - dst->params.regs.displacement = sign_extend8(ext&0xFF); -#endif - ext = *(++cur); dst->params.regs.sec = ext >> 11;//includes areg/dreg bit, reg num and word/long bit #ifdef M68020 -- cgit v1.2.3