summaryrefslogtreecommitdiff
path: root/v4.0/src/SELECT/COLORS.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/SELECT/COLORS.ASM')
-rw-r--r--v4.0/src/SELECT/COLORS.ASM83
1 files changed, 83 insertions, 0 deletions
diff --git a/v4.0/src/SELECT/COLORS.ASM b/v4.0/src/SELECT/COLORS.ASM
new file mode 100644
index 0000000..a959623
--- /dev/null
+++ b/v4.0/src/SELECT/COLORS.ASM
@@ -0,0 +1,83 @@
1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2;
3; COLORS.ASM
4;
5;
6;
7; Color CODE Definition
8;
9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
10
11 .alpha ; arrange segments alphabetically
12
13 INCLUDE SEL-PAN.INC ;AN000;
14 ;
15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
16;
17; Color Index Structure
18;
19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20CCB_PB STRUC ;AN000;
21CCB_A1 DB 0 ;AN000;Normal/Base Panel
22CCB_A2 DB 0 ;AN000;Selection Bar/Field Highlight
23CCB_A3 DB 0 ;AN000;Selected Options
24CCB_A4 DB 0 ;AN000;Highlighted and Selected Options
25CCB_A5 DB 0 ;AN000;Active Options
26CCB_A6 DB 0 ;AN000;Direction Indicators
27CCB_A7 DB 0 ;AN000;Title
28CCB_A8 DB 0 ;AN000;Instructions
29CCB_A9 DB 0 ;AN000;Function Keys
30CCB_AA DB 0 ;AN000;Mnemonic Highlight
31CCB_AB DB 0 ;AN000;Reserved
32CCB_AC DB 0 ;AN000;Reserved
33CCB_PB ENDS ;AN000;
34 ;
35 PUBLIC WR_CIS,WR_CIS2,L_WR_CIS,L_WR_CIS2;AN000;
36 ;
37CODE SEGMENT PARA PUBLIC 'CODE' ;AN000;
38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39;
40; Color Index Structure (Actual color values)
41;
42; Attribute Color Attribute Assignment
43; --------- -----------------------------------
44; A1 - Normal/Base Panel
45; A2 - Selection Bar/Field Highlight
46; A3 - Selected Options
47; A4 - Highlighted and Selected Options
48; A5 - Active Options
49; A6 - Direction Indicators
50; A7 - Title
51; A8 - Instructions
52; A9 - Function Keys
53; AA - Mnemonic Highlight
54; AB - Reserved
55; AC - Reserved
56;
57; A1, A2, A3, A4, A5, A6, A7, A8, A9, AA, AB, AC
58; � � � � � � � � � � � �
59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
60WR_CIS DB 31,113, 48,113, 31, 31, 30, 30,112, 28, 00, 00 ;AN000;Logo Scr
61WR_CIS_W EQU $-WR_CIS ;AN000;
62 DB 31,127, 48,113, 31, 31, 30, 30,112, 28, 00, 00 ;AN000;Inactive scroll
63 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Ctxt Help
64 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Ctxt Help
65; DB 4Fh,112,112,112,112,112,112,112,112,112, 00, 00 ;Indx Help
66 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Indx Help
67L_WR_CIS EQU ($-WR_CIS)/WR_CIS_W ;AN000;
68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
69;
70; Color Index Structure (Actual MONO values)
71;
72; A1, A2, A3, A4, A5, A6, A7, A8, A9, AA, AB, AC
73; � � � � � � � � � � � �
74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
75WR_CIS2 DB 7,112, 48,112, 7, 7, 7, 7,112, 28, 00, 00 ;AN000;Logo Scr
76WR_CIS2_W EQU $-WR_CIS2 ;AN000;
77 DB 7,127, 48,112, 7, 7, 7, 7,112, 28, 00, 00 ;AN000;Logo Scr
78 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Ctxt Help
79 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Ctxt Help
80 DB 112,112,112,112,112,112,112,112,112,112, 00, 00 ;AN000;Indx Help
81L_WR_CIS2 EQU ($-WR_CIS2)/WR_CIS2_W ;AN000;
82CODE ENDS ;AN000;
83 END ;AN000;