2006-04-26 15:08:19 +00:00
|
|
|
/*
|
|
|
|
|
* Xbox framebuffer - Video + Console
|
|
|
|
|
*
|
2008-12-11 20:30:53 +00:00
|
|
|
* Copyright (C) 2005 Ed Schouten <ed@fxq.nl>,
|
2006-04-26 15:08:19 +00:00
|
|
|
* Stefan Reinauer <stepan@openbios.org>
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2010-03-14 17:19:58 +00:00
|
|
|
#include "config.h"
|
2010-03-14 15:05:53 +00:00
|
|
|
#include "libopenbios/bindings.h"
|
2006-04-26 15:08:19 +00:00
|
|
|
#include "libc/diskio.h"
|
|
|
|
|
|
|
|
|
|
typedef struct osi_fb_info {
|
|
|
|
|
unsigned long mphys;
|
|
|
|
|
int rb, w, h, depth;
|
|
|
|
|
} osi_fb_info_t;
|
|
|
|
|
|
2010-03-13 10:58:19 +00:00
|
|
|
#include "../../../packages/video.c"
|
|
|
|
|
#include "../../../libopenbios/console_common.c"
|