SPLIT_MOVEL_PD now affects movem too

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@241 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-09-08 20:04:20 +00:00
parent 7a7c6476f3
commit e28a980fb7
4 changed files with 23 additions and 11 deletions

View file

@ -7133,9 +7133,12 @@ M68KMAKE_OP(movem, 32, re, pd)
if(register_list & (1 << i))
{
ea -= 4;
#if 0
m68ki_write_32(ea, REG_DA[15-i] ); // notaz Cyclone hack
//m68ki_write_16(ea+2, REG_DA[15-i] & 0xFFFF );
//m68ki_write_16(ea, (REG_DA[15-i] >> 16) & 0xFFFF );
#else
m68ki_write_16(ea+2, REG_DA[15-i] & 0xFFFF );
m68ki_write_16(ea, (REG_DA[15-i] >> 16) & 0xFFFF );
#endif
count++;
}
AY = ea;