1/**
2 * \file
3 */
4
5/*
6 * Copyright (c) 2009, ETH Zurich.
7 * All rights reserved.
8 *
9 * This file is distributed under the terms in the attached LICENSE file.
10 * If you do not find this file, copies can be found by writing to:
11 * ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
12 */
13
14#ifndef CONSOLE_H
15#define CONSOLE_H
16
17#include <stdint.h>
18#include <guest.h>
19
20struct console {
21    uint8_t cursor_pos_x, cursor_pos_y;
22};
23
24struct console * console_new (void);
25int console_handle_int10 (struct console *c, struct guest *g);
26
27#endif // CONSOLE_H
28