386BSD 0.1 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Sat, 11 Jul 1992 23:30:27 +0000 (15:30 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Sat, 11 Jul 1992 23:30:27 +0000 (15:30 -0800)
Work on file usr/src/sys.386bsd/i386/include/pc/display.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

usr/src/sys.386bsd/i386/include/pc/display.h [new file with mode: 0644]

diff --git a/usr/src/sys.386bsd/i386/include/pc/display.h b/usr/src/sys.386bsd/i386/include/pc/display.h
new file mode 100644 (file)
index 0000000..cab46e4
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * IBM PC display definitions
+ */
+
+/* Color attributes for foreground text */
+
+#define        FG_BLACK                   0
+#define        FG_BLUE                    1
+#define        FG_GREEN                   2
+#define        FG_CYAN                    3
+#define        FG_RED                     4
+#define        FG_MAGENTA                 5
+#define        FG_BROWN                   6
+#define        FG_LIGHTGREY               7
+#define        FG_DARKGREY                8
+#define        FG_LIGHTBLUE               9
+#define        FG_LIGHTGREEN             10
+#define        FG_LIGHTCYAN              11
+#define        FG_LIGHTRED               12
+#define        FG_LIGHTMAGENTA           13
+#define        FG_YELLOW                 14
+#define        FG_WHITE                  15
+#define        FG_BLINK                0x80
+
+/* Color attributes for text background */
+
+#define        BG_BLACK                0x00
+#define        BG_BLUE                 0x10
+#define        BG_GREEN                0x20
+#define        BG_CYAN                 0x30
+#define        BG_RED                  0x40
+#define        BG_MAGENTA              0x50
+#define        BG_BROWN                0x60
+#define        BG_LIGHTGREY            0x70
+
+/* Monochrome attributes for foreground text */
+
+#define        FG_UNDERLINE            0x01
+#define        FG_INTENSE              0x08
+
+/* Monochrome attributes for text background */
+
+#define        BG_INTENSE              0x10