| 471 | } |
| 472 | |
| 473 | void |
| 474 | term_end_screen(void) |
| 475 | { |
| 476 | if (!iflags.grmode) { |
| 477 | txt_clear_screen(); |
| 478 | #ifdef PC9800 |
| 479 | fputs("\033[>1l", stdout); |
| 480 | #endif |
| 481 | #ifdef SCREEN_VGA |
| 482 | } else if (iflags.usevga) { |
| 483 | vga_term_end_screen(); |
| 484 | #endif |
| 485 | #ifdef SCREEN_VESA |
| 486 | } else if (iflags.usevesa) { |
| 487 | vesa_term_end_screen(); |
| 488 | #endif |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | void |
| 493 | tty_nhbell(void) |
no test coverage detected