X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fmodex16.h;h=b81fb36c46dc199eeaa0220b8a30e44a883246a2;hb=f02096268cea5a79cc6a32d2f67831ec50aabdbd;hp=51c911410c70486e67668e67c9d3569c1a5978d5;hpb=8e7cced60cc3375099328304114e9a1ce4ea5139;p=16.git diff --git a/src/lib/modex16.h b/src/lib/modex16.h index 51c91141..b81fb36c 100644 --- a/src/lib/modex16.h +++ b/src/lib/modex16.h @@ -4,9 +4,11 @@ #ifndef MODEX16_H #define MODEX16_H //#include + #include "src/lib/types.h" #include "src/lib/bitmap.h" #include "src/lib/planar.h" +#include "src/lib/lib_head.h" /* -========================== Types & Macros ==========================- */ #define PAGE_OFFSET(x,y) (((y)<<6)+((y)<<4)+((x)>>2)) @@ -14,7 +16,7 @@ #define SELECT_ALL_PLANES() outpw(0x03c4, 0xff02) typedef struct { - byte huge* data; /* the data for the page */ + byte far* data; /* the data for the page */ word dx; /* col we are viewing on the virtual screen */ word dy; /* row we are viewing on the virtual screen */ word width; /* virtual width of the page */ @@ -67,6 +69,8 @@ void modexPalUpdate1(byte *p); void modexPalUpdate0(byte *p); void chkcolor(bitmap_t *bmp, word *q, word *a, word *aa, word *z, word *i/*, word *offset*/); void modexWaitBorder(); +byte far *bios_8x8_font(void); +void bputs(page_t *pee, int x, int y, const char *s); /* -======================= Constants & Vars ==========================- */ extern byte far* VGA; /* The VGA Memory */