mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
[Core/VDP] fixed FIFO emulation for 32-bit (longwords) access to VDP (Sonic Spinball)
This commit is contained in:
parent
341f093fb1
commit
51b4472d91
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 3.7 MiB |
Binary file not shown.
Before Width: | Height: | Size: 3.8 MiB After Width: | Height: | Size: 3.8 MiB |
@ -2098,16 +2098,16 @@ static void vdp_fifo_update(unsigned int cycles)
|
||||
|
||||
const int *fifo_timing;
|
||||
|
||||
const int fifo_cycles_h32[16+2] =
|
||||
const int fifo_cycles_h32[16+4] =
|
||||
{
|
||||
230, 510, 810, 970, 1130, 1450, 1610, 1770, 2090, 2250, 2410, 2730, 2890, 3050, 3350, 3370,
|
||||
MCYCLES_PER_LINE + 230, MCYCLES_PER_LINE + 510
|
||||
MCYCLES_PER_LINE + 230, MCYCLES_PER_LINE + 510, MCYCLES_PER_LINE + 810, MCYCLES_PER_LINE + 970,
|
||||
};
|
||||
|
||||
const int fifo_cycles_h40[18+2] =
|
||||
const int fifo_cycles_h40[18+4] =
|
||||
{
|
||||
352, 820, 948, 1076, 1332, 1460, 1588, 1844, 1972, 2100, 2356, 2484, 2612, 2868, 2996, 3124, 3364, 3380,
|
||||
MCYCLES_PER_LINE + 352, MCYCLES_PER_LINE + 820
|
||||
MCYCLES_PER_LINE + 352, MCYCLES_PER_LINE + 820, MCYCLES_PER_LINE + 948, MCYCLES_PER_LINE + 1076,
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user