Skip to content

Commit

Permalink
Merge branch 'ekeeke:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ds22x authored Mar 2, 2024
2 parents 4a7b2f0 + 8c72ba0 commit d434ad9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Binary file modified builds/genesis_plus_gx_libretro.dll
Binary file not shown.
Binary file modified builds/genplus_cube.dol
Binary file not shown.
Binary file modified builds/genplus_wii.dol
Binary file not shown.
19 changes: 11 additions & 8 deletions core/vdp_ctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ int vdp_context_load(uint8 *state)

void vdp_dma_update(unsigned int cycles)
{
unsigned int dma_cycles, dma_bytes;
int dma_cycles, dma_bytes;

/* DMA transfer rate (bytes per line)
Expand Down Expand Up @@ -662,6 +662,12 @@ void vdp_dma_update(unsigned int cycles)
else if (rate == 204) rate = 198; /* 6 refresh slots per line in H40 mode when display is off */
}

/* Adjust DMA start cycle for DMA fill to take in account intial data port write */
else if (dmafill)
{
cycles += (2 * (MCYCLES_PER_LINE / rate));
}

/* Available DMA cycles */
if (status & 8)
{
Expand Down Expand Up @@ -724,7 +730,7 @@ void vdp_dma_update(unsigned int cycles)
}

/* Process DMA */
if (dma_bytes)
if (dma_bytes > 0)
{
/* Update DMA length */
dma_length -= dma_bytes;
Expand Down Expand Up @@ -2487,9 +2493,6 @@ static void vdp_68k_data_w_m5(unsigned int data)
/* Check if DMA Fill is pending */
if (dmafill)
{
/* Clear DMA Fill pending flag */
dmafill = 0;

/* DMA length */
dma_length = (reg[20] << 8) | reg[19];

Expand All @@ -2499,11 +2502,11 @@ static void vdp_68k_data_w_m5(unsigned int data)
dma_length = 0x10000;
}

/* Take into account initial data word processing */
dma_length += 2;

/* Trigger DMA */
vdp_dma_update(m68k.cycles);

/* Clear DMA Fill pending flag */
dmafill = 0;
}
}

Expand Down

0 comments on commit d434ad9

Please sign in to comment.