1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/* Copyright (C) 2001-2012 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* IBM PC EGA and VGA display drivers */
/* All of the real code is in gdevpcfb.c. */
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gxdevice.h"
#include "gdevpcfb.h"
/* ------ Internal routines ------ */
/* We can't catch signals.... */
void
pcfb_set_signals(gx_device * dev)
{
}
/* Read the device state */
void
pcfb_get_state(pcfb_bios_state * pbs)
{
registers regs;
regs.h.ah = 0xf;
int86(0x10, ®s, ®s);
pbs->display_mode = regs.h.al;
pbs->text_page = regs.h.bh;
regs.h.ah = 0x3;
int86(0x10, ®s, ®s);
pbs->text_cursor_mode = regs.rshort.cx;
regs.rshort.ax = 0x1130;
regs.h.bh = 0;
int86(0x10, ®s, ®s);
switch (regs.rshort.cx) {
case 0x08:
pbs->text_font = 0x1112;
break; /* 8 x 8 */
case 0x10:
pbs->text_font = 0x1114;
break; /* 8 x 16 */
default:
pbs->text_font = 0x1111; /* 8 x 14 */
}
regs.h.ah = 0x8;
regs.h.bh = pbs->text_page;
int86(0x10, ®s, ®s);
pbs->text_attribute = regs.h.ah;
pbs->border_color = (regs.h.ah >> 4);
regs.rshort.ax = 0x1a00;
int86(0x10, ®s, ®s);
if (regs.h.al == 0x1a && regs.h.bl == 0x8) {
regs.rshort.ax = 0x1008;
int86(0x10, ®s, ®s);
pbs->border_color = regs.h.bh;
}
if (pbs->display_mode != 3) {
pbs->display_mode = 3;
pbs->text_font = 0x1112;
pbs->text_cursor_mode = 0x0607;
pbs->text_attribute = 7;
pbs->text_page = 0;
}
}
/* Set the device mode */
void
pcfb_set_mode(int mode)
{
registers regs;
regs.h.ah = 0;
regs.h.al = mode;
int86(0x10, ®s, ®s);
}
/* Restore the device state */
void
pcfb_set_state(const pcfb_bios_state * pbs)
{
registers regs;
pcfb_set_mode(pbs->display_mode);
regs.rshort.ax = 0x500; /* force display of page 0 */
int86(0x10, ®s, ®s);
regs.rshort.ax = pbs->text_font;
regs.h.bl = 0;
int86(0x10, ®s, ®s);
regs.h.ah = 0x3;
regs.h.bh = 0;
int86(0x10, ®s, ®s); /* Get cursor to reset MCGA */
regs.h.al = pbs->text_page;
regs.h.ah = 0x5;
int86(0x10, ®s, ®s);
regs.rshort.cx = pbs->text_cursor_mode;
regs.h.ah = 0x1;
int86(0x10, ®s, ®s);
regs.rshort.ax = 0x1001;
regs.h.bh = pbs->border_color;
int86(0x10, ®s, ®s);
}
|