Amstrad changes :

- Add PPC512/640 emulation
- Add TV display type to Sinclair PC200
- Add font selection to PC1512
- Add disc change line to PC200
Patch from JohnElliott
This commit is contained in:
SarahW 2019-04-15 19:48:41 +01:00
commit 1f5fc45c04
20 changed files with 1281 additions and 138 deletions

View file

@ -1421,6 +1421,11 @@ void fdc_discchange_clear(int drive)
disc_changed[drive] = 0;
}
int fdc_discchange_read()
{
return (disc_changed[fdc.drive] || drive_empty[fdc.drive]) ? 1 : 0;
}
void fdc_set_dskchg_activelow()
{
fdc.dskchg_activelow = 1;