summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i960/i960sim/console
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i960/i960sim/console')
-rw-r--r--c/src/lib/libbsp/i960/i960sim/console/console-io.c67
-rw-r--r--c/src/lib/libbsp/i960/i960sim/console/mon-syscalls.S41
2 files changed, 0 insertions, 108 deletions
diff --git a/c/src/lib/libbsp/i960/i960sim/console/console-io.c b/c/src/lib/libbsp/i960/i960sim/console/console-io.c
deleted file mode 100644
index 1f17fad4cb..0000000000
--- a/c/src/lib/libbsp/i960/i960sim/console/console-io.c
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * This file contains the hardware specific portions of the TTY driver
- * for the serial ports on the erc32.
- *
- * COPYRIGHT (c) 1989-1997.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <bsp.h>
-#include <rtems/libio.h>
-#include <stdlib.h>
-#include <assert.h>
-
-/*
- * console_initialize_hardware
- *
- * This routine initializes the console hardware.
- *
- */
-
-void console_initialize_hardware(void)
-{
- return;
-}
-
-/*
- * console_outbyte_polled
- *
- * This routine transmits a character using polling.
- */
-
-void console_outbyte_polled(
- int port,
- char ch
-)
-{
- int status;
- int nwritten;
-
- status = _sys_write (1, &ch, 1, &nwritten);
-}
-
-/*
- * console_inbyte_nonblocking
- *
- * This routine polls for a character.
- */
-
-int console_inbyte_nonblocking(
- int port
-)
-{
- int status;
- int nread;
- char c;
-
- status = _sys_read (0, &c, 1, &nread);
- if ( status == 0 )
- return c;
- return -1;
-}
diff --git a/c/src/lib/libbsp/i960/i960sim/console/mon-syscalls.S b/c/src/lib/libbsp/i960/i960sim/console/mon-syscalls.S
deleted file mode 100644
index 0c6dc97f66..0000000000
--- a/c/src/lib/libbsp/i960/i960sim/console/mon-syscalls.S
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifdef __STDC__
-# define _C_LABEL(x) _ ## x
-#else
-# define _C_LABEL(x) _/**/x
-#endif
-#define _ASM_LABEL(x) x
-
-#define _ENTRY(name) \
- .text; .align 4; .globl name; name:
-
-#define ENTRY(name) \
- _ENTRY(_C_LABEL(name))
-
-ENTRY(_sys_exit)
- lda 257,g13
- calls g13
-
-ENTRY(_sys_open)
- lda 230,g13
- calls g13
- ret
-
-ENTRY(_sys_read)
- lda 231,g13
- calls g13
- ret
-
-ENTRY(_sys_write)
- lda 232,g13
- calls g13
- ret
-
-ENTRY(_sys_lseek)
- lda 233,g13
- calls g13
- ret
-
-ENTRY(_sys_close)
- lda 234,g13
- calls g13
- ret