home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_5 - Screen Output via BIOS calls
- by Stephen R. Davis, 1987
-
- Perform screen output using BIOS calls. This may not
- be all that much faster than 'printf' output, since 'printf'
- uses BIOS calls itself.
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- #define white 0x07
- #define screenheight 25
-
- /*add the screen BIOS subfunctions*/
- #define scrollup 0x06
- #define setcursor 0x02
- #define writetele 0x0e
- #define getmode 0x0f
-
- /*define global variables*/
- unsigned v_pos, h_pos, screenwidth;
- union REGS regs;
-
- /*prototype declarations*/
- void init (void);
- void scroll (unsigned);
- void qprintf (char *);
- void pcursor (unsigned, unsigned);
-
- /*Main - test the output routines*/
- int main ()
- {
- int i, j;
-
- init ();
- for (i = 0; i < 20; i++) {
- for (j = 0; j < screenheight; j++) {
- qprintf ("this is BIOS output");
- pcursor(v_pos, 30+j);
- qprintf ("and this\n");
- }
- for (j = 0; j < screenheight; j++)
- printf ("this is normal printf output\n");
- }
- }
-
- /*Init - clear the screen*/
- void init ()
- {
- regs.h.ah = getmode;
- int86 (0x10, ®s, ®s);
- screenwidth = (unsigned)regs.h.ah;
-
- scroll (screenheight);
- pcursor (0, 0);
- }
-
- /*Scroll - scroll up N lines using function 6*/
- void scroll (nlines)
- unsigned nlines;
- {
- if (nlines >= screenheight)
- nlines = screenheight;
-
- h_pos = 0;
- if ((v_pos += nlines) >= screenheight) {
- nlines = (v_pos - screenheight) + 1;
- regs.h.ah = scrollup;
- regs.h.al = nlines;
- regs.h.bh = white;
- regs.x.cx = 0;
- regs.h.dh = screenheight;
- regs.h.dl = screenwidth;
- int86 (0x10, ®s, ®s);
- v_pos = screenheight - 1;
- }
- }
-
- /*Qprintf - output a string using the BIOS screen handler. If
- an attribute is not provided, use the default.*/
- void qprintf (c)
- char *c;
- {
- for (; *c; c++)
- if (*c == '\n')
- scroll (1);
- else {
- if (h_pos++ < screenwidth) {
- regs.h.ah = writetele;
- regs.h.al = *c;
- int86 (0x10, ®s, ®s);
- }
- }
- pcursor (v_pos, h_pos);
- }
-
- /*PCursor - place the cursor at the current x and y location.
- To place the cursor, and subsequent output, to any
- arbitrary location, set 'v_pos' and 'h_pos' before
- calling pcursor.*/
- void pcursor (y, x)
- unsigned x, y;
- {
- v_pos = y;
- h_pos = x;
-
- regs.h.ah = setcursor;
- regs.h.bh = 0;
- regs.h.dh = v_pos;
- regs.h.dl = h_pos;
- int86 (0x10, ®s, ®s);
- }