64 lines
2.3 KiB
C
64 lines
2.3 KiB
C
|
/* -*- Mode: C; c-basic-offset: 3 -*-
|
||
|
*
|
||
|
* console_vga.h - Console driver for VGA text mode.
|
||
|
*
|
||
|
* This file is part of Metalkit, a simple collection of modules for
|
||
|
* writing software that runs on the bare metal. Get the latest code
|
||
|
* at http://svn.navi.cx/misc/trunk/metalkit/
|
||
|
*
|
||
|
* Copyright (c) 2008-2009 Micah Dowty
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person
|
||
|
* obtaining a copy of this software and associated documentation
|
||
|
* files (the "Software"), to deal in the Software without
|
||
|
* restriction, including without limitation the rights to use,
|
||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the
|
||
|
* Software is furnished to do so, subject to the following
|
||
|
* conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be
|
||
|
* included in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONSOLE_VGA_H__
|
||
|
#define __CONSOLE_VGA_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
#include "console.h"
|
||
|
|
||
|
#define VGA_COLOR_BLACK 0
|
||
|
#define VGA_COLOR_BLUE 1
|
||
|
#define VGA_COLOR_GREEN 2
|
||
|
#define VGA_COLOR_CYAN 3
|
||
|
#define VGA_COLOR_RED 4
|
||
|
#define VGA_COLOR_MAGENTA 5
|
||
|
#define VGA_COLOR_BROWN 6
|
||
|
#define VGA_COLOR_LIGHT_GRAY 7
|
||
|
#define VGA_COLOR_DARK_GRAY 8
|
||
|
#define VGA_COLOR_LIGHT_BLUE 9
|
||
|
#define VGA_COLOR_LIGHT_GREEN 10
|
||
|
#define VGA_COLOR_LIGHT_CYAN 11
|
||
|
#define VGA_COLOR_LIGHT_RED 12
|
||
|
#define VGA_COLOR_LIGHT_MAGENTA 13
|
||
|
#define VGA_COLOR_YELLOW 14
|
||
|
#define VGA_COLOR_WHITE 15
|
||
|
|
||
|
#define VGA_TEXT_WIDTH 80
|
||
|
#define VGA_TEXT_HEIGHT 25
|
||
|
|
||
|
fastcall void ConsoleVGA_Init(void);
|
||
|
fastcall void ConsoleVGA_SetColor(int8 fgColor);
|
||
|
fastcall void ConsoleVGA_SetBgColor(int8 bgColor);
|
||
|
|
||
|
#endif /* __CONSOLE_VGA_H__ */
|