RDP Fix START END CURRENT to 24-bit & Set STATUS Command Buffer Ready Bit 7

This commit is contained in:
peterlemon 2019-05-02 17:19:05 +01:00
parent 8d2074be61
commit cc8b955dfa

View file

@ -1,4 +1,4 @@
/*
/*
MAME Legal Information
License
@ -7620,8 +7620,9 @@ void rdp_process_list(void)
if (!remaining_length)
{
dp_start = dp_current = dp_end;
dp_start &= 0x00FFFFFF;
dp_end &= 0x00FFFFFF;
dp_current = dp_end;
return;
}
else
@ -7659,7 +7660,10 @@ void rdp_process_list(void)
rdp_cmd_cur = 0;
};
dp_start = dp_current = dp_end;
dp_start &= 0x00FFFFFF;
dp_end &= 0x00FFFFFF;
dp_current = dp_end;
dp_status = 0x00000080;
}