mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
minor tweak (nw)
This commit is contained in:
parent
1fc225121b
commit
5479cad01a
@ -69,9 +69,11 @@ void igs022_device::IGS022_do_dma(UINT16 src, UINT16 dst, UINT16 size, UINT16 mo
|
||||
*/
|
||||
|
||||
param = mode >> 8;
|
||||
if (mode & 0x00f0) printf("IGS022_do_dma mode bits %04x set\n", mode & 0x00f0);
|
||||
|
||||
mode &=0xf; // what are the other bits?
|
||||
// the initial DMA on kilbld has 0x10 set, drgw3 has 0x18 set, not sure how they affect the operation.
|
||||
if (mode & 0x00f8) printf("IGS022_do_dma mode bits %04x set\n", mode & 0x00f8);
|
||||
|
||||
mode &=0x7; // what are the other bits?
|
||||
|
||||
|
||||
if ((mode == 0) || (mode == 1) || (mode == 2) || (mode == 3) || (mode == 4))
|
||||
|
Loading…
Reference in New Issue
Block a user