diff options
author | 1997-08-21 21:52:12 +0000 | |
---|---|---|
committer | 1997-08-21 21:52:12 +0000 | |
commit | 8748a8c75c55b8603302d7c00ef559372b065f5a (patch) | |
tree | 193735d3dec3c194299342f16d9012a54f06bdcd | |
parent | no need for \n (diff) | |
download | wireguard-openbsd-8748a8c75c55b8603302d7c00ef559372b065f5a.tar.xz wireguard-openbsd-8748a8c75c55b8603302d7c00ef559372b065f5a.zip |
print gray on black, not black on black
-rw-r--r-- | sys/arch/i386/stand/libsa/bioscons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/bioscons.c b/sys/arch/i386/stand/libsa/bioscons.c index ab3ba7f8503..249c3612c9e 100644 --- a/sys/arch/i386/stand/libsa/bioscons.c +++ b/sys/arch/i386/stand/libsa/bioscons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioscons.c,v 1.4 1997/08/13 15:17:04 mickey Exp $ */ +/* $OpenBSD: bioscons.c,v 1.5 1997/08/21 21:52:12 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -90,7 +90,7 @@ pc_putc(dev, c) dev_t dev; int c; { - __asm __volatile(DOINT(0x10) : : "a" (c | 0xe00), "b" (0) : + __asm __volatile(DOINT(0x10) : : "a" (c | 0xe00), "b" (1) : "%ecx", "%edx", "cc" ); } |