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 kevin@koconnor.net --- src/output.c | 1 + 1 file changed, 1 insertion(+)
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); }