C64: The CPU can trigger VIC badlines on its own (needed for VSP)

This commit is contained in:
SaxxonPike 2019-07-09 20:53:54 -05:00
parent 2abe832289
commit b471fdc692
1 changed files with 21 additions and 0 deletions

View File

@ -292,6 +292,27 @@
_extraColorMode = (val & 0x40) != 0;
_rasterInterruptLine &= 0xFF;
_rasterInterruptLine |= (val & 0x80) << 1;
if (_rasterLine == FirstDmaLine)
_badlineEnable |= _displayEnable;
if (_badlineEnable)
{
if ((_rasterLine & 0x7) == _yScroll)
{
_badline = true;
_idle = false;
}
else
{
_badline = false;
}
}
else
{
_badline = false;
}
UpdateBorder();
UpdateVideoMode();
break;