Add alternate font tables and associated loading logic in video BIOS, allowing correct gaps between "wide" characters (e.g. m,w,M,W,T,Z,0) in all VGA machine types.
Update all related BIOS memory values and CRTC registers when loading fonts, fixing quirks in some textmode programs like Inertia Player. Based in part on a patch by h-a-l-9000. Improve support for MDA emulation in the vgaonly machine type, as it is the only way the video BIOS can make use of the 14-line alternate symbols. Be compatible by setting the INT 43h vector to the first half of the 8-line font table for standard text modes. Fixes a few obscure games and demos that rely on this BIOS behavior. Move VESA mode table and OEM string before font tables in the video ROM, which is a more compatible ordering and gives the data low address offsets that work around a bug in some programs such as the Abuse game and Molejo demo. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3932
This commit is contained in:
parent
f66ff6e3d7
commit
1b7b92ed8a
5 changed files with 254 additions and 80 deletions
|
@ -99,6 +99,8 @@
|
|||
extern Bit8u int10_font_08[256 * 8];
|
||||
extern Bit8u int10_font_14[256 * 14];
|
||||
extern Bit8u int10_font_16[256 * 16];
|
||||
extern Bit8u int10_font_14_alternate[20 * 15 + 1];
|
||||
extern Bit8u int10_font_16_alternate[19 * 17 + 1];
|
||||
|
||||
struct VideoModeBlock {
|
||||
Bit16u mode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue