Some last minute ARM-emulation changes for the 3.3.01 test release.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2212 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2011-01-31 03:07:52 +00:00
parent 26e5f0157f
commit 4d16be1049
1 changed files with 2 additions and 3 deletions

View File

@ -35,8 +35,8 @@ Thumbulator::Thumbulator(uInt16* rom_ptr, uInt16* ram_ptr)
: rom(rom_ptr),
ram(ram_ptr),
copydata(0),
DBUG(1), // dump detailed execution trace
DISS(1) // dump Thumb instruction trace
DBUG(0), // dump detailed execution trace
DISS(0) // dump Thumb instruction trace
{
}
@ -473,7 +473,6 @@ if(DISS) fprintf(stderr,"add r%u,r%u\n",rd,rm);
ra=read_register(rd);
rb=read_register(rm);
rc=ra+rb;
if(rd==15) rc+=2;
//fprintf(stderr,"0x%08X = 0x%08X + 0x%08X\n",rc,ra,rb);
write_register(rd,rc);
return(0);