- Timestamp:
- 07/14/2017 04:18:35 PM (7 years ago)
- Branches:
- master
- Children:
- ace9ee7
- Parents:
- 1efe224
- Location:
- vlib
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
vlib/glcinit.c
r1efe224 rfa38804 42 42 No error checks are done. 43 43 44 45 44 GLCdisp(dsp, crs, blk1, blk2, blk3) 46 45 short dsp, crs, blk1, blk2, blk3; … … 53 52 Turns the cursor on or off. 54 53 ============================================================================= 55 */56 57 /*58 59 54 */ 60 55 … … 76 71 int8_t glc_is2[] = { 0x00, 0x00, 0x3F, 0x00, 0x20, 0x3F, 0x00, 0x00 }; 77 72 78 /*79 80 */81 82 73 /* 83 74 ============================================================================= … … 115 106 LCD_WD = lcdctl2; 116 107 } 117 118 /*119 120 */121 108 122 109 /* … … 164 151 GLCdisp(G_OFF, G_B2, G_ON, G_ON, G_OFF); 165 152 166 /* 167 168 */ 153 169 154 LCD_WC = G_CRSWR; /* set cursor at (0,0) in G_PLANE1 */ 170 155 LCD_WD = G_PLANE1 & 0xFF; … … 191 176 } 192 177 193 /*194 195 */196 197 178 /* 198 179 ============================================================================= … … 218 199 return(curad); /* return calculated cursor address */ 219 200 } 220 221 /*222 223 */224 201 225 202 /* … … 261 238 } 262 239 263 /*264 265 */266 267 240 /* 268 241 ============================================================================= … … 288 261 } 289 262 290 /*291 292 */293 294 263 /* 295 264 ============================================================================= -
vlib/lseg.c
r1efe224 rfa38804 37 37 on their use of register variables. 38 38 ============================================================================= 39 */40 41 /*42 43 39 */ 44 40 -
vlib/vbfill4.c
r1efe224 rfa38804 27 27 }; 28 28 29 /*30 31 */32 33 29 void vbfill4(uint16_t *obj, int16_t obwidth, int16_t xmin, int16_t ymin, int16_t xmax, int16_t ymax, uint16_t color) 34 30 { … … 45 41 lmask = rmask = 0; 46 42 47 /* 48 49 */ 43 50 44 switch (xmin & 3) { 51 45 … … 101 95 return; 102 96 103 /* 104 105 */ 97 106 98 case 1: 107 99 … … 155 147 return; 156 148 157 /* 158 159 */ 149 160 150 case 2: 161 151 … … 209 199 return; 210 200 211 /* 212 213 */ 201 214 202 case 3: 215 203 -
vlib/vhinit.c
r1efe224 rfa38804 26 26 int16_t v_nobj; /* current object number */ 27 27 int16_t v_obpri; /* current object priority */ 28 29 /*30 */31 28 32 29 /* initialized variables */ … … 59 56 #endif 60 57 }; 61 62 /*63 */64 58 65 59 /* -
vlib/vmput.c
r1efe224 rfa38804 46 46 } 47 47 48 /*49 */50 51 48 /* 52 49 ============================================================================= -
vlib/vobjfns.c
r1efe224 rfa38804 34 34 */ 35 35 36 /*37 38 */39 40 36 /* 41 37 VIint() is located in viint.s but is mentioned here for completeness … … 60 56 uint16_t vi_ctl; /* object unblank control bits */ 61 57 62 /*63 64 */65 66 58 /* 67 59 ============================================================================= … … 86 78 vbank(op->obank & 3); 87 79 } 88 89 /*90 91 */92 80 93 81 /* … … 128 116 setipl(0); /* enable VI interrupt */ 129 117 } 130 131 /*132 133 */134 118 135 119 /* … … 161 145 op->obank = bank & 3; 162 146 163 /* 164 165 */ 147 166 148 if (type) { /* character objects */ 167 149 … … 194 176 wsize = wsize + (wsize << 1); 195 177 196 /* 197 198 */ 178 199 179 } else { /* bitmap objects */ 200 180 … … 228 208 SetPri(obj, pri); 229 209 } 230 231 /*232 233 */234 210 235 211 /* -
vlib/vputs.c
r1efe224 rfa38804 41 41 } 42 42 43 /*44 */45 46 43 /* 47 44 ============================================================================= -
vlib/vputsv.c
r1efe224 rfa38804 41 41 } 42 42 43 /*44 */45 46 43 /* 47 44 ============================================================================= -
vlib/vsetpal.c
r1efe224 rfa38804 32 32 }; 33 33 34 /*35 36 */37 38 34 /* 39 35 ============================================================================= … … 62 58 } 63 59 64 /*65 66 */67 68 60 /* 69 61 ============================================================================= -
vlib/vspray4.c
r1efe224 rfa38804 23 23 is -1, and the list terminates with a null pointer. 24 24 ============================================================================= 25 */26 27 /*28 29 25 */ 30 26
Note:
See TracChangeset
for help on using the changeset viewer.