clear to end of screen */
| 277 | |
| 278 | /* clear to end of screen */ |
| 279 | void vga_cl_eos(int cy) |
| 280 | { |
| 281 | int count; |
| 282 | |
| 283 | cl_end(); |
| 284 | while (cy <= LI - 2) { |
| 285 | for (count = 0; count < (CO - 1); ++count) { |
| 286 | vga_WriteChar(' ', count, cy, BACKGROUND_VGA_COLOR); |
| 287 | } |
| 288 | cy++; |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | void |
| 293 | vga_term_end_screen(void) |
no test coverage detected