/****************************************************************************/
/* Copyright 2010 MBARI.                                                    */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
#ifndef ENV_REG_H
#define ENV_REG_H

void regInit(); 

int regCmd(unsigned int cmd);

void regWrite(unsigned int address, unsigned int data);
unsigned int regRead(unsigned int address);



#endif

