| 299 | #endif |
| 300 | |
| 301 | void |
| 302 | home(void) |
| 303 | { |
| 304 | tty_curs(BASE_WINDOW, 1, 0); |
| 305 | ttyDisplay->curx = ttyDisplay->cury = (uchar) 0; |
| 306 | if (!iflags.grmode) { |
| 307 | txt_gotoxy(0, 0); |
| 308 | #ifdef SCREEN_VGA |
| 309 | } else if (iflags.usevga) { |
| 310 | vga_gotoloc(0, 0); |
| 311 | #endif |
| 312 | #ifdef SCREEN_VESA |
| 313 | } else if (iflags.usevesa) { |
| 314 | vesa_gotoloc(0, 0); |
| 315 | #endif |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | void |
| 320 | nocmov(int col, int row) |
nothing calls this directly
no test coverage detected