]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/SELECT/COLORS.ASM

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / SELECT / COLORS.ASM
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20 CCB_PB STRUC ;AN000;
21 CCB_A1 DB 0 ;AN000;Normal/Base Panel
22 CCB_A2 DB 0 ;AN000;Selection Bar/Field Highlight
23 CCB_A3 DB 0 ;AN000;Selected Options
24 CCB_A4 DB 0 ;AN000;Highlighted and Selected Options
25 CCB_A5 DB 0 ;AN000;Active Options
26 CCB_A6 DB 0 ;AN000;Direction Indicators
27 CCB_A7 DB 0 ;AN000;Title
28 CCB_A8 DB 0 ;AN000;Instructions
29 CCB_A9 DB 0 ;AN000;Function Keys
30 CCB_AA DB 0 ;AN000;Mnemonic Highlight
31 CCB_AB DB 0 ;AN000;Reserved
32 CCB_AC DB 0 ;AN000;Reserved
33 CCB_PB ENDS ;AN000;
34 ;
35 PUBLIC WR_CIS,WR_CIS2,L_WR_CIS,L_WR_CIS2;AN000;
36 ;
37 CODE 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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
60 WR_CIS DB 31,113, 48,113, 31, 31, 30, 30,112, 28, 00, 00 ;AN000;Logo Scr
61 WR_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
67 L_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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
75 WR_CIS2 DB 7,112, 48,112, 7, 7, 7, 7,112, 28, 00, 00 ;AN000;Logo Scr
76 WR_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
81 L_WR_CIS2 EQU ($-WR_CIS2)/WR_CIS2_W ;AN000;
82 CODE ENDS ;AN000;
83 END ;AN000;