Merge pull request #1690 from 86Box/master

Bring the branch up to par with master.
This commit is contained in:
Miran Grča
2021-09-14 22:34:42 +02:00
committed by GitHub
15 changed files with 538 additions and 440 deletions

View File

@@ -402,3 +402,22 @@ machine_xt_pc700_init(const machine_t *model)
return ret;
}
int
machine_xt_multitechpc500_init(const machine_t* model)
{
int ret;
ret = bios_load_linear("roms/machines/multitech_pc500/rom404.bin",
0x000f8000, 32768, 0);
if (bios_only || !ret)
return ret;
device_add(&keyboard_pc_device);
machine_xt_common_init(model);
return ret;
}