diff --git a/src/drv/drvBb902.c b/src/drv/drvBb902.c index 975ae6adf..c434586b1 100644 --- a/src/drv/drvBb902.c +++ b/src/drv/drvBb902.c @@ -47,9 +47,16 @@ static char SccsId[] = "@(#)bb902_driver.c $Id$ "; #include #include #include -#include #include +/* Burr-Brown 902 binary output memory structure */ +struct bo_bb902{ + short csr; /* control status register */ + short low_value; /* low order 16 bits value */ + short high_value; /* high order 16 bits value */ + char end_pad[0x100-6]; /* pad until next card */ +}; + static char *bb902_shortaddr; /* pointers to the binary output cards */