1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00

It seems possibly there is a distinct IIgs character ROM?

This commit is contained in:
Thomas Harte 2020-11-16 22:22:26 -05:00
parent bb80e53021
commit 62f936128d

View File

@ -232,8 +232,10 @@ template <typename TimeUnit> class VideoSwitches {
II, II,
/// The ROM that shipped with the original IIe. /// The ROM that shipped with the original IIe.
IIe, IIe,
/// The ROM that shipped with the Enhanced IIe, the IIc and the IIgs. /// The ROM that shipped with the Enhanced IIe.
EnhancedIIe EnhancedIIe,
/// The ROM that shipped with the IIgs.
IIgs
}; };
/// @returns A file-level description of @c rom. /// @returns A file-level description of @c rom.
@ -246,9 +248,11 @@ template <typename TimeUnit> class VideoSwitches {
case CharacterROM::IIe: case CharacterROM::IIe:
return ROMMachine::ROM(machine_name, "the Apple IIe character ROM", "apple2eu-character.rom", 4*1024, 0x816a86f1); return ROMMachine::ROM(machine_name, "the Apple IIe character ROM", "apple2eu-character.rom", 4*1024, 0x816a86f1);
default:
case CharacterROM::EnhancedIIe: case CharacterROM::EnhancedIIe:
return ROMMachine::ROM(machine_name, "the Enhanced Apple IIe character ROM", "apple2e-character.rom", 4*1024, 0x2651014d); return ROMMachine::ROM(machine_name, "the Enhanced Apple IIe character ROM", "apple2e-character.rom", 4*1024, 0x2651014d);
case CharacterROM::IIgs:
return ROMMachine::ROM(machine_name, "the Apple IIgs character ROM", "apple2gs.chr", 4*1024, 0x91e53cd8);
} }
} }