From 9ac02ea71804afa7af8a9edfa4e6be802fd1455f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Sun, 21 Aug 2005 17:29:36 +0000 Subject: [PATCH] add int10/ax=1123 call (vasyl; checked against real bios) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2281 --- src/ints/int10.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ints/int10.cpp b/src/ints/int10.cpp index 40abef9b..40f1d5c1 100644 --- a/src/ints/int10.cpp +++ b/src/ints/int10.cpp @@ -209,8 +209,10 @@ static Bitu INT10_Handler(void) { RealSetVec(0x43,int10.rom.font_14); real_writew(BIOSMEM_SEG,BIOSMEM_CHAR_HEIGHT,14); goto graphics_chars; -// case 0x23: /* Rom 8x8 double dot set */ - //TODO + case 0x23: /* Rom 8x8 double dot set */ + RealSetVec(0x43,int10.rom.font_8_first); + real_writew(BIOSMEM_SEG,BIOSMEM_CHAR_HEIGHT,8); + goto graphics_chars; case 0x24: /* Rom 8x16 set */ RealSetVec(0x43,int10.rom.font_16); real_writew(BIOSMEM_SEG,BIOSMEM_CHAR_HEIGHT,16);