From cb53faacb279e2a17f2c28a1a58822906ca1a6b1 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 16 Mar 2018 06:53:54 +0100 Subject: [PATCH] Fixed the IBM PS/2 Model 70 Type 3 and 4 ROM sizes. --- src/rom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rom.c b/src/rom.c index c36600291..19cf4c762 100644 --- a/src/rom.c +++ b/src/rom.c @@ -13,7 +13,7 @@ * - c386sx16 BIOS fails checksum * - the loadfont() calls should be done elsewhere * - * Version: @(#)rom.c 1.0.34 2018/03/11 + * Version: @(#)rom.c 1.0.35 2018/03/16 * * Authors: Sarah Walker, * Miran Grca, @@ -721,7 +721,7 @@ rom_load_bios(int rom_id) if (! rom_load_interleaved( L"roms/machines/ibmps2_m70_type3/70-a_even.bin", L"roms/machines/ibmps2_m70_type3/70-a_odd.bin", - 0x000000, 65536, 0, rom)) break; + 0x000000, 131072, 0, rom)) break; biosmask = 0x1ffff; return(1); @@ -729,7 +729,7 @@ rom_load_bios(int rom_id) if (! rom_load_interleaved( L"roms/machines/ibmps2_m70_type4/70-b_even.bin", L"roms/machines/ibmps2_m70_type4/70-b_odd.bin", - 0x000000, 65536, 0, rom)) break; + 0x000000, 131072, 0, rom)) break; biosmask = 0x1ffff; return(1);