Revert "Machine path reorganisation"

This reverts commit 0a48dbcfcd.
This commit is contained in:
David Hrdlička
2020-05-22 22:32:46 +02:00
parent 91607994f1
commit dfa28eb8e9
25 changed files with 233 additions and 233 deletions

View File

@@ -858,7 +858,7 @@ machine_xt_t1000_init(const machine_t *model)
int ret;
ret = bios_load_linear(L"roms/machines/t1000/t1000/t1000.rom",
ret = bios_load_linear(L"roms/machines/t1000/t1000.rom",
0x000f8000, 32768, 0);
if (bios_only || !ret)
@@ -870,7 +870,7 @@ machine_xt_t1000_init(const machine_t *model)
t1000.ems_port_index = 7; /* EMS disabled */
/* Load the T1000 CGA Font ROM. */
loadfont(L"roms/machines/t1000/t1000/t1000font.rom", 2);
loadfont(L"roms/machines/t1000/t1000font.rom", 2);
/*
* The ROM drive is optional.
@@ -878,7 +878,7 @@ machine_xt_t1000_init(const machine_t *model)
* If the file is missing, continue to boot; the BIOS will
* complain 'No ROM drive' but boot normally from floppy.
*/
f = rom_fopen(L"roms/machines/t1000/t1000/t1000dos.rom", L"rb");
f = rom_fopen(L"roms/machines/t1000/t1000dos.rom", L"rb");
if (f != NULL) {
t1000.romdrive = malloc(T1000_ROMSIZE);
if (t1000.romdrive) {
@@ -951,7 +951,7 @@ machine_xt_t1200_init(const machine_t *model)
int ret;
ret = bios_load_linear(L"roms/machines/t1000/t1200/t1200_019e.ic15.bin",
ret = bios_load_linear(L"roms/machines/t1200/t1200_019e.ic15.bin",
0x000f8000, 32768, 0);
if (bios_only || !ret)
@@ -962,7 +962,7 @@ machine_xt_t1200_init(const machine_t *model)
t1000.ems_port_index = 7; /* EMS disabled */
/* Load the T1200 CGA Font ROM. */
loadfont(L"roms/machines/t1000/t1200/t1000font.bin", 2);
loadfont(L"roms/machines/t1200/t1000font.bin", 2);
/* Map the EMS page frame */
for (pg = 0; pg < 4; pg++) {