diff --git a/Machines/Utility/ROMCatalogue.cpp b/Machines/Utility/ROMCatalogue.cpp index 0d6a42f63..28488454e 100644 --- a/Machines/Utility/ROMCatalogue.cpp +++ b/Machines/Utility/ROMCatalogue.cpp @@ -567,7 +567,12 @@ Description::Description(Name name) { case Name::OricMicrodisc: *this = Description(name, "Oric", "the Oric Microdisc ROM", "microdisc.rom", 8*1024, 0xa9664a9cu); break; case Name::Oric8DOSBoot: *this = Description(name, "Oric", "the 8DOS boot ROM", "8dos.rom", 512, 0x49a74c06u); break; - case Name::PCCompatibleGLaBIOS: *this = Description(name, "PCCompatible", "8088 GLaBIOS 0.2.5", "GLABIOS_0.2.5_8T.ROM", 8 * 1024, 0x9576944cu); break; + case Name::PCCompatibleGLaBIOS: + *this = Description(name, "PCCompatible", "8088 GLaBIOS 0.2.5", "GLABIOS_0.2.5_8T.ROM", 8 * 1024, 0x9576944cu); + break; + case Name::PCCompatiblePhoenix80286BIOS: + *this = Description(name, "PCCompatible", "Phoenix 80286 BIOS 3.05", "Phoenix 80286 ROM BIOS Version 3.05.bin", 32 * 1024, 0x8d0d318au); + break; // TODO: CRCs below are incomplete, at best. case Name::MSXGenericBIOS: *this = Description(name, "MSX", "a generix MSX BIOS", "msx.rom", 32*1024, 0x94ee12f3u); break; diff --git a/Machines/Utility/ROMCatalogue.hpp b/Machines/Utility/ROMCatalogue.hpp index 54571bb98..da256fa4e 100644 --- a/Machines/Utility/ROMCatalogue.hpp +++ b/Machines/Utility/ROMCatalogue.hpp @@ -134,6 +134,7 @@ enum Name { // PCCompatible. PCCompatibleGLaBIOS, + PCCompatiblePhoenix80286BIOS, // Sinclair QL. SinclairQLJS, diff --git a/ROMImages/PCCompatible/Phoenix 80286 ROM BIOS Version 3.05.bin b/ROMImages/PCCompatible/Phoenix 80286 ROM BIOS Version 3.05.bin new file mode 100644 index 000000000..dbcd58888 Binary files /dev/null and b/ROMImages/PCCompatible/Phoenix 80286 ROM BIOS Version 3.05.bin differ diff --git a/ROMImages/PCCompatible/readme.txt b/ROMImages/PCCompatible/readme.txt index e37f706f3..3321b7137 100644 --- a/ROMImages/PCCompatible/readme.txt +++ b/ROMImages/PCCompatible/readme.txt @@ -1,5 +1,6 @@ Expected files: GLABIOS_0.2.5_8T.ROM — the 8088 GlaBIOS ROM. +Phoenix 80286 ROM BIOS Version 3.05.bin — Phoenix's 80286 AT-clone BIOS. GlaBIOS is an open-source GPLv3 alternative BIOS for XT clones, available from https://glabios.org/ \ No newline at end of file