/****************************************************************************/
/* Copyright 1990, 1991, 1992 MBARI                                         */
/****************************************************************************/
/* Summary  : Microcontroller assembly language library definitions         */
/* Filename : microasm.h                                                    */
/* Author   : Andrew Pearce                                                 */
/* Project  : Tiburon ROV                                                   */
/* Version  : 1.0                                                           */
/* Created  : 11/21/90                                                      */
/* Modified : 05/15/92                                                      */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/* $Header: /usr/tiburon/.cvsroot/micro/h/microasm.h,v 1.1.1.1 1997/05/02 17:15:39 pean Exp $
 * $Log: microasm.h,v $
 * Revision 1.1.1.1  1997/05/02 17:15:39  pean
 * Initial release of the microcontroller software after Tiburon
 * Moolpool Dive to test IView, Lapboxes, modified Power can
 * GF/5V using bus capacitance mode.
 *
 * Revision 1.1  92/05/14  09:17:49  09:17:49  pean (Andrew Pearce 408-647-3746)
 * Initial revision
 *
*/
/****************************************************************************/

#ifndef MICROASM_H
#define MICROASM_H

#define SYSCLOCK_RATE   100             /* System ticker rate 100Hz (10msec)*/

#ifdef __STDC__                         /* ANSI C function prototypes       */

Nat16 read_sysclock( Void );

Void reset_processor( Void );

#endif /* __STDC__ */

#endif
