2009-10-12 03:35:35 +00:00
|
|
|
#include "ntddk.h"
|
2010-03-06 18:55:27 +00:00
|
|
|
#include "ntifs.h"
|
2009-10-12 03:35:35 +00:00
|
|
|
#include "arc/arc.h"
|
|
|
|
#include "halfuncs.h"
|
|
|
|
#include "drivers/bootvid/bootvid.h"
|
|
|
|
|
|
|
|
/* Define if FontData has upside down characters */
|
|
|
|
#undef CHAR_GEN_UPSIDE_DOWN
|
|
|
|
|
|
|
|
#define BOOTCHAR_HEIGHT 13
|
|
|
|
|
|
|
|
//
|
|
|
|
// Command Stream Definitions
|
|
|
|
//
|
|
|
|
#define CMD_STREAM_WRITE 0x0
|
|
|
|
#define CMD_STREAM_WRITE_ARRAY 0x2
|
|
|
|
#define CMD_STREAM_USHORT 0x4
|
|
|
|
#define CMD_STREAM_READ 0x8
|
|
|
|
|
|
|
|
//
|
|
|
|
// Bitmap Header
|
|
|
|
//
|
|
|
|
typedef struct tagBITMAPINFOHEADER
|
|
|
|
{
|
|
|
|
ULONG biSize;
|
|
|
|
LONG biWidth;
|
|
|
|
LONG biHeight;
|
|
|
|
USHORT biPlanes;
|
|
|
|
USHORT biBitCount;
|
|
|
|
ULONG biCompression;
|
|
|
|
ULONG biSizeImage;
|
|
|
|
LONG biXPelsPerMeter;
|
|
|
|
LONG biYPelsPerMeter;
|
|
|
|
ULONG biClrUsed;
|
|
|
|
ULONG biClrImportant;
|
|
|
|
} BITMAPINFOHEADER, *PBITMAPINFOHEADER;
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
InitializePalette(
|
|
|
|
VOID
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Globals
|
|
|
|
//
|
|
|
|
extern USHORT AT_Initialization[];
|
|
|
|
extern ULONG curr_x;
|
|
|
|
extern ULONG curr_y;
|
|
|
|
extern ULONG_PTR VgaRegisterBase;
|
|
|
|
extern ULONG_PTR VgaBase;
|
|
|
|
extern UCHAR FontData[256 * BOOTCHAR_HEIGHT];
|