Finalized changing the 286-based systems to have an "internal ide" controller; these machines now have to select the desired HD controller from the menu. The Samsung 286 machine also needs its upper 384K remapped. Added machine_at_scat_remap() to implement thjs for SCAT-based boards.

This commit is contained in:
waltje
2017-09-18 22:38:15 -04:00
parent aea3b1e34f
commit ef677295f7
5 changed files with 16 additions and 28 deletions

View File

@@ -551,14 +551,17 @@ static void scat_init(void)
void machine_at_scat_init(void)
{
machine_at_ide_init();
machine_at_init();
scat_init();
}
void machine_at_scat_spc4200p_init(void)
void machine_at_scat_remap_init(void)
{
machine_at_init();
mem_remap_top_384k();
scat_init();
}