Previous 199869 Revisions Next

r17377 Tuesday 21st August, 2012 at 14:54:11 UTC by Angelo Salese
Force srcbit and dstbit to be always under 32 bytes
[src/emu/cpu/v810]v810.c

trunk/src/emu/cpu/v810/v810.c
r17376r17377
10681068
10691069//      printf("BDST %08x BSRC %08x SIZE %08x DST %08x SRC %08x\n",cpustate->R26,cpustate->R27,cpustate->R28,cpustate->R29,cpustate->R30);
10701070
1071      dstbit = cpustate->R26;
1072      srcbit = cpustate->R27;
1071      dstbit = cpustate->R26 & 0x1f;
1072      srcbit = cpustate->R27 & 0x1f;
10731073      size =  cpustate->R28;
10741074      dst = cpustate->R29 & ~3;
10751075      src = cpustate->R30 & ~3;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team