cos.cc
// INCLUDE THE CLASS DECLARATION

#include "cos.h"

//**********************
// CLASS DEFINITION: COS
//**********************

// CONSTANTS: ASIC REGISTER SET

const int COS::Data      = 0x00;
const int COS::Level     = 0x01;
const int COS::Transmit  = 0x02;
const int COS::Receive   = 0x03;

// CONSTANTS: BIT MASKS FOR Transmit AND Receive

const int COS::Enable    = 0x8000;
const int COS::IruptMask = 0x4000;
const int COS::Interrupt = 0x2000;
const int COS::Size      = 0x1FFF;
© Copyright 2000-2001 Adrian Lewis