26 lines
342 B
C
26 lines
342 B
C
/*
|
|
** thinlib (c) 2001 Matthew Conte (matt@conte.com)
|
|
**
|
|
**
|
|
** tl_prof.c
|
|
**
|
|
** Screen border color profiler nastiness.
|
|
**
|
|
** $Id: $
|
|
*/
|
|
|
|
#include <pc.h>
|
|
#include "tl_types.h"
|
|
#include "tl_prof.h"
|
|
|
|
void thin_prof_setborder(int pal_index)
|
|
{
|
|
inportb(0x3DA);
|
|
outportb(0x3C0, 0x31);
|
|
outportb(0x3C0, (uint8) pal_index);
|
|
}
|
|
|
|
/*
|
|
** $Log: $
|
|
*/
|