fix branch addr when bigger than a word on m68k

This commit is contained in:
Pau Oliva 2014-04-06 16:46:40 +02:00
parent 5091fa0887
commit 15c06938cf

View File

@ -12,7 +12,7 @@
static int disassemble(RAsm *a, RAsmOp *aop, const ut8 *buf, int len) {
m68k_word bof[8] = {0};
m68k_word iaddr = (m68k_word)a->pc;
int iaddr = (int)a->pc;
char opcode[256], operands[256];
const unsigned char *buf2;
int ilen ;