source: rtems/c/src/lib/libbsp/h8300/h8sim/console/console-io.c @ 1f275887

4.104.114.84.95
Last change on this file since 1f275887 was 1f275887, checked in by Joel Sherrill <joel.sherrill@…>, on 01/03/01 at 16:43:16

2001-01-03 Joel Sherrill <joel@…>

  • console/console-io.c: Added console_initialize_hardware().
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  This file contains the hardware specific portions of the TTY driver
3 *  for the serial ports on the erc32.
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/*
22 *  console_initialize_hardware
23 *
24 *  This routine initializes the console hardware.
25 *
26 */
27
28void console_initialize_hardware(void)
29{
30  return;
31}
32
33/*
34 *  console_outbyte_polled
35 *
36 *  This routine transmits a character using polling.
37 */
38
39void console_outbyte_polled(
40  int  port,
41  char ch
42)
43{
44  asm volatile( "mov.b #0,r1l ;  mov.b %0l,r2l ; jsr @@0xc4"
45       :  : "r" (ch)  : "r1", "r2"); 
46}
47
48/*
49 *  console_inbyte_nonblocking
50 *
51 *  This routine polls for a character.
52 */
53
54int console_inbyte_nonblocking(
55  int port
56)
57{
58  return -1;
59}
60
61#include <bspIo.h>
62
63void H8simBSP_output_char(char c) { console_outbyte_polled( 0, c ); }
64
65BSP_output_char_function_type           BSP_output_char = H8simBSP_output_char;
66BSP_polling_getchar_function_type       BSP_poll_char = NULL;
67
68
Note: See TracBrowser for help on using the repository browser.