forked from Imagelibrary/rtems
2001-01-03 Joel Sherrill <joel@OARcorp.com>
* console/console-io.c: Added console_initialize_hardware().
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console-io.c: Added console_initialize_hardware().
|
||||||
|
|
||||||
2000-12-06 Joel Sherrill <joel@OARcorp.com>
|
2000-12-06 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* startup/bspstart.c: Removed unused variables ramSpace and _end.
|
* startup/bspstart.c: Removed unused variables ramSpace and _end.
|
||||||
|
|||||||
@@ -20,16 +20,28 @@
|
|||||||
|
|
||||||
/* external prototypes for monitor interface routines */
|
/* external prototypes for monitor interface routines */
|
||||||
|
|
||||||
|
extern int armulator_stdin;
|
||||||
|
extern int armulator_stdout;
|
||||||
|
extern int armulator_stderr;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* console_initialize_hardware
|
||||||
|
*
|
||||||
|
* This routine initializes the console hardware.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void console_initialize_hardware(void)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* console_outbyte_polled
|
* console_outbyte_polled
|
||||||
*
|
*
|
||||||
* This routine transmits a character using polling.
|
* This routine transmits a character using polling.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern int armulator_stdin;
|
|
||||||
extern int armulator_stdout;
|
|
||||||
extern int armulator_stderr;
|
|
||||||
|
|
||||||
void console_outbyte_polled(
|
void console_outbyte_polled(
|
||||||
int port,
|
int port,
|
||||||
char ch
|
char ch
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console-io.c: Added console_initialize_hardware().
|
||||||
|
|
||||||
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console-io.c: Added console_initialize_hardware().
|
||||||
|
|
||||||
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
||||||
|
|||||||
@@ -18,7 +18,17 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
/* external prototypes for monitor interface routines */
|
/*
|
||||||
|
* console_initialize_hardware
|
||||||
|
*
|
||||||
|
* This routine initializes the console hardware.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void console_initialize_hardware(void)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* console_outbyte_polled
|
* console_outbyte_polled
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console-io.c: Added console_initialize_hardware().
|
||||||
|
|
||||||
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* console/console-io.c: Added console_initialize_hardware().
|
||||||
|
|
||||||
2000-11-27 Joel Sherrill <joel@OARcorp.com>
|
2000-11-27 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* The shsim is for the SH simulator in gdb. It should be able
|
* The shsim is for the SH simulator in gdb. It should be able
|
||||||
|
|||||||
@@ -24,6 +24,17 @@
|
|||||||
#define SYS_read 3
|
#define SYS_read 3
|
||||||
#define SYS_write 4
|
#define SYS_write 4
|
||||||
|
|
||||||
|
/*
|
||||||
|
* console_initialize_hardware
|
||||||
|
*
|
||||||
|
* This routine initializes the console hardware.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void console_initialize_hardware(void)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* console_outbyte_polled
|
* console_outbyte_polled
|
||||||
|
|||||||
Reference in New Issue
Block a user