The PS/1 model 2133 no longer remaps A0000-FFFFF to the top of memory, fixes #1410.

This commit is contained in:
OBattler
2021-04-28 20:26:01 +02:00
parent 278b73e339
commit eee5e476ad

View File

@@ -458,6 +458,8 @@ ps1_setup(int model)
lpt1_remove();
lpt1_init(0x3bc);
mem_remap_top(384);
if (model == 2011) {
rom_init(&ps->high_rom,
"roms/machines/ibmps1es/f80000.bin",
@@ -503,8 +505,6 @@ ps1_common_init(const machine_t *model)
{
machine_common_init(model);
mem_remap_top(384);
refresh_at_enable = 1;
pit_ctr_set_out_func(&pit->counters[1], pit_refresh_timer_at);