Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/dev/ic pullup rev. 1.30:
details: https://anonhg.NetBSD.org/src/rev/5185844a5a5d
branches: netbsd-1-5
changeset: 489335:5185844a5a5d
user: drochner <drochner%NetBSD.org@localhost>
date: Thu Aug 31 17:05:58 2000 +0000
description:
pullup rev. 1.30:
define "80x24" screen types for better vt100 compatibility
(manpage was already pulled up)
diffstat:
sys/dev/ic/vga.c | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diffs (46 lines):
diff -r 70996d98f6b9 -r 5185844a5a5d sys/dev/ic/vga.c
--- a/sys/dev/ic/vga.c Thu Aug 31 15:30:46 2000 +0000
+++ b/sys/dev/ic/vga.c Thu Aug 31 17:05:58 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vga.c,v 1.28.2.2 2000/08/08 16:55:06 jeffs Exp $ */
+/* $NetBSD: vga.c,v 1.28.2.3 2000/08/31 17:05:58 drochner Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -207,6 +207,21 @@
&vga_emulops,
8, 8,
WSSCREEN_WSCOLORS | WSSCREEN_BLINK
+}, vga_24lscreen = {
+ "80x24", 80, 24,
+ &vga_emulops,
+ 8, 16,
+ WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK
+}, vga_24lscreen_mono = {
+ "80x24", 80, 24,
+ &vga_emulops,
+ 8, 16,
+ WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE
+}, vga_24lscreen_bf = {
+ "80x24bf", 80, 24,
+ &vga_emulops,
+ 8, 16,
+ WSSCREEN_WSCOLORS | WSSCREEN_BLINK
};
#define VGA_SCREEN_CANTWOFONTS(type) (!((type)->capabilities & WSSCREEN_HILIT))
@@ -218,11 +233,14 @@
&vga_40lscreen_bf,
&vga_50lscreen,
&vga_50lscreen_bf,
+ &vga_24lscreen,
+ &vga_24lscreen_bf,
/* XXX other formats, graphics screen? */
}, *_vga_scrlist_mono[] = {
&vga_stdscreen_mono,
&vga_40lscreen_mono,
&vga_50lscreen_mono,
+ &vga_24lscreen_mono,
/* XXX other formats, graphics screen? */
};
Home |
Main Index |
Thread Index |
Old Index