/* * This include file contains all console driver definitions for the * Motorola MC68681 compatible DUART used as the first two serial * ports on the DMV177. * * COPYRIGHT (c) 1989-1997. * On-Line Applications Research Corporation (OAR). * Copyright assigned to U.S. Government, 1994. * * The license and distribution terms for this file may in * the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * $Id$ */ #ifndef __MC68681_CONFIG_H #define __MC68681_CONFIG_H #ifdef __cplusplus extern "C" { #endif /* * Board specific register access routines */ unsigned8 Read_mc68681_register( unsigned32 ulCtrlPort, unsigned8 ucRegNum ); void Write_mc68681_register( unsigned32 ulCtrlPort, unsigned8 ucRegNum, unsigned8 ucData ); unsigned8 Read_mc68681_data( unsigned32 ulDataPort ); void Write_mc68681_data( unsigned32 ulDataPort, unsigned8 ucData ); #ifdef __cplusplus } #endif #endif