-/** @file console.c
- * @brief A console driver.
+/* console.c
+ * A console driver.
+ *
+ * Copyright (c) 2008 Joshua Wise. All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
*
- * @author Joshua Wise (jwise) <joshua@joshuawise.com>
- * @bug None known
*/
#include <console.h>
#include "console-ext.h"
+#include <minilib.h>
#include <io.h>
#define POS_IS_VALID(row, col) ((row) >= 0 && (row) < CONSOLE_HEIGHT && (col) >= 0 && (col) < CONSOLE_WIDTH)