From: Kevin O'Connor Date: Sun, 6 Apr 2014 01:45:27 +0000 (-0400) Subject: Set the color attribute when calling vgabios print character. X-Git-Tag: rel-1.7.5-rc1~15 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f6b44b81e61be2e03a9e296dd592cbf4d78a336b;p=seabios.git Set the color attribute when calling vgabios print character. Set the color attribute in case the SeaBIOS console code is used while the vgabios is in a graphics mode. Signed-off-by: Kevin O'Connor --- diff --git a/src/output.c b/src/output.c index 994a1d6..45397b3 100644 --- a/src/output.c +++ b/src/output.c @@ -76,6 +76,7 @@ screenc(char c) br.flags = F_IF; br.ah = 0x0e; br.al = c; + br.bl = 0x07; call16_int(0x10, &br); }