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 |
r17376 | r17377 | |
---|---|---|
1068 | 1068 | |
1069 | 1069 | // printf("BDST %08x BSRC %08x SIZE %08x DST %08x SRC %08x\n",cpustate->R26,cpustate->R27,cpustate->R28,cpustate->R29,cpustate->R30); |
1070 | 1070 | |
1071 | dstbit = cpustate->R26; | |
1072 | srcbit = cpustate->R27; | |
1071 | dstbit = cpustate->R26 & 0x1f; | |
1072 | srcbit = cpustate->R27 & 0x1f; | |
1073 | 1073 | size = cpustate->R28; |
1074 | 1074 | dst = cpustate->R29 & ~3; |
1075 | 1075 | src = cpustate->R30 & ~3; |
Previous | 199869 Revisions | Next |