X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=eagen0.c;h=8ac72ed3824ff3e2cd7055805d3ff276439aa590;hp=c95d8b677146703d9d22354357de924cbd7c8ae5;hb=66be644c3e5fbd7446d86c79e9e51b75c0442b49;hpb=171a457e86f686cf2adddc91baa9d9e703264259 diff --git a/eagen0.c b/eagen0.c index c95d8b6..8ac72ed 100644 --- a/eagen0.c +++ b/eagen0.c @@ -39,6 +39,35 @@ int eaNgen(WORD siz) if (tdb) rmark(cursect, sloc, tdb, MWORD, NULL); + if ((v == 0) && optim_flag) + { + // If expr is 0, size optimise the opcode. + // Generally the lower 6 bits of the opcode + // for expr(ax) are 101rrr where rrr=the + // number of the register, then followed by + // a word containing 'expr'. We need to change + // that to 010rrr. + if ((siz & 0x8000) == 0) + { + chptr_opcode[0] &= ((0xFFC7 >> 8) & 255); // mask off bits + chptr_opcode[1] &= 0xFFC7 & 255; // mask off bits + chptr_opcode[0] |= ((0x0010 >> 8) & 255); // slap in 010 bits + chptr_opcode[1] |= 0x0010 & 255; // slap in 010 bits + } + else + { + // Special case for move ea,ea: + // there are two ea fields there and + // we get a signal if it's the second ea field + // from m_ea - siz's 16th bit is set + chptr_opcode[0] &= ((0xFE3F >> 8) & 255); // mask off bits + chptr_opcode[1] &= 0xFE3F & 255; // mask off bits + chptr_opcode[0] |= ((0x0080 >> 8) & 255); // slap in 010 bits + chptr_opcode[1] |= 0x0080 & 255; // slap in 010 bits + } + return OK; + } + if (v + 0x8000 >= 0x18000) return error(range_error); @@ -114,7 +143,7 @@ int eaNgen(WORD siz) if (v + 0x80 >= 0x100) return error(range_error); - w |= v & 0xff; + w |= v & 0xFF; D_word(w); } else