2008-12-11 20:30:53 +00:00
|
|
|
/*
|
2006-04-26 15:08:19 +00:00
|
|
|
* Creation Date: <2002/10/29 18:59:05 samuel>
|
|
|
|
|
* Time-stamp: <2003/12/28 22:51:11 samuel>
|
2008-12-11 20:30:53 +00:00
|
|
|
*
|
2006-04-26 15:08:19 +00:00
|
|
|
* <console.c>
|
2008-12-11 20:30:53 +00:00
|
|
|
*
|
2006-04-26 15:08:19 +00:00
|
|
|
* Simple text console
|
2008-12-11 20:30:53 +00:00
|
|
|
*
|
2006-04-26 15:08:19 +00:00
|
|
|
* Copyright (C) 2002, 2003, 2004 Samuel Rydh (samuel@ibrium.se)
|
|
|
|
|
* Copyright (C) 2005 Stefan Reinauer <stepan@openbios.org>
|
2008-12-11 20:30:53 +00:00
|
|
|
*
|
2006-04-26 15:08:19 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation
|
2008-12-11 20:30:53 +00:00
|
|
|
*
|
2006-04-26 15:08:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "openbios/config.h"
|
|
|
|
|
#include "openbios/bindings.h"
|
|
|
|
|
#include "libc/diskio.h"
|
|
|
|
|
#include "osi_calls.h"
|
|
|
|
|
#include "ofmem.h"
|
|
|
|
|
#include "mol/mol.h"
|
|
|
|
|
#include "boothelper_sh.h"
|
|
|
|
|
#include "video_sh.h"
|
|
|
|
|
|
|
|
|
|
#define openbios_GetFBInfo(x) OSI_GetFBInfo(x)
|
|
|
|
|
|
2010-03-13 10:58:19 +00:00
|
|
|
#include "../../../packages/video.c"
|
|
|
|
|
#include "../../../libopenbios/console_common.c"
|