16 lines
220 B
C
16 lines
220 B
C
// parallel.c
|
|
// Author: Josh Holtrop
|
|
// Date: 08/02/04
|
|
|
|
#include "hos_defines.h"
|
|
#include "functions.h"
|
|
#include "parallel.h"
|
|
|
|
void outparb(int c)
|
|
{
|
|
outportb(0x37a, 0xc);
|
|
outportb(0x378, c);
|
|
outportb(0x37a, 0x1);
|
|
}
|
|
|