source: rtems/c/src/lib/libbsp/powerpc/score603e/console/consolereserveresources.c @ c42bd452

4.104.114.84.95
Last change on this file since c42bd452 was c42bd452, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 16:05:41

Split console_reserve_resources into its own file to reduce dependencies.
Still need to move debug io routines out.

  • Property mode set to 100644
File size: 680 bytes
Line 
1/*
2 *  This file contains the routine console_reserve_resources
3 *  for the Score603e console driver.
4 *
5 *  COPYRIGHT (c) 1989-1997.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <bsp.h>
17#include <rtems/libio.h>
18#include <stdlib.h>
19#include <assert.h>
20
21#include "consolebsp.h"
22
23void console_reserve_resources(
24  rtems_configuration_table *configuration
25)
26{
27  rtems_termios_reserve_resources( configuration, NUM_Z85C30_PORTS );
28}
29
Note: See TracBrowser for help on using the repository browser.