mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
fix vblank start timing
This commit is contained in:
parent
333575cf71
commit
7a27032edb
@ -284,8 +284,8 @@ void tms9928a_device::device_timer(emu_timer &timer, device_timer_id id, int par
|
|||||||
for ( int i = 0; i < TMS9928A_TOTAL_HORZ; i++ )
|
for ( int i = 0; i < TMS9928A_TOTAL_HORZ; i++ )
|
||||||
p[i] = BackColour;
|
p[i] = BackColour;
|
||||||
|
|
||||||
/* Check for end of active display */
|
/* vblank is set 1 line after end of active display */
|
||||||
if ( y == 192 )
|
if ( y == 193 )
|
||||||
{
|
{
|
||||||
m_StatusReg |= 0x80;
|
m_StatusReg |= 0x80;
|
||||||
check_interrupt();
|
check_interrupt();
|
||||||
|
Loading…
Reference in New Issue
Block a user