mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-26 15:32:04 +00:00
Add CGA font references.
This commit is contained in:
parent
24eaf95e9d
commit
23bdf0c2a2
@ -573,7 +573,9 @@ Description::Description(Name name) {
|
|||||||
case Name::PCCompatiblePhoenix80286BIOS:
|
case Name::PCCompatiblePhoenix80286BIOS:
|
||||||
*this = Description(name, "PCCompatible", "Phoenix 80286 BIOS 3.05", "Phoenix 80286 ROM BIOS Version 3.05.bin", 32 * 1024, 0x8d0d318au);
|
*this = Description(name, "PCCompatible", "Phoenix 80286 BIOS 3.05", "Phoenix 80286 ROM BIOS Version 3.05.bin", 32 * 1024, 0x8d0d318au);
|
||||||
break;
|
break;
|
||||||
case Name::PCCompatibleCGAFont: /* TODO */
|
case Name::PCCompatibleCGAFont:
|
||||||
|
*this = Description(name, "PCCompatible", "IBM's CGA font", "CGA.F08", 8 * 256, 0xa362ffe6u);
|
||||||
|
break;
|
||||||
case Name::PCCompatibleMDAFont:
|
case Name::PCCompatibleMDAFont:
|
||||||
*this = Description(name, "PCCompatible", "IBM's MDA font", "EUMDA9.F14", 14 * 256, 0x7754882au);
|
*this = Description(name, "PCCompatible", "IBM's MDA font", "EUMDA9.F14", 14 * 256, 0x7754882au);
|
||||||
break;
|
break;
|
||||||
|
@ -3,8 +3,9 @@ Expected files:
|
|||||||
GLABIOS_0.2.5_8T.ROM — the 8088 GlaBIOS ROM.
|
GLABIOS_0.2.5_8T.ROM — the 8088 GlaBIOS ROM.
|
||||||
Phoenix 80286 ROM BIOS Version 3.05.bin — Phoenix's 80286 AT-clone BIOS.
|
Phoenix 80286 ROM BIOS Version 3.05.bin — Phoenix's 80286 AT-clone BIOS.
|
||||||
EUMDA9.F14 — a dump of the MDA font.
|
EUMDA9.F14 — a dump of the MDA font.
|
||||||
|
CGA.F08 — a dump of the CGA font.
|
||||||
|
|
||||||
|
|
||||||
GlaBIOS is an open-source GPLv3 alternative BIOS for XT clones, available from https://glabios.org/
|
GlaBIOS is an open-source GPLv3 alternative BIOS for XT clones, available from https://glabios.org/
|
||||||
|
|
||||||
The MDA font is in the form offered at https://github.com/viler-int10h/vga-text-mode-fonts i.e. it's 256 lots of 14 bytes, the first 14 being the content of character 0, the next 14 being the content of character 1, etc.
|
The MDA and CGA fonts are in the form offered at https://github.com/viler-int10h/vga-text-mode-fonts i.e. it's 256 lots of 14 bytes, the first 14 being the content of character 0, the next 14 being the content of character 1, etc.
|
Loading…
x
Reference in New Issue
Block a user