2005-01-27 Hans-Peter Nilsson <hp@axis.com>

* configure.in: Support cris-*-* and crisv32-*-*.
        * libnosys/configure.in: Ditto.
        * configure, libnosys/configure: Regenerate.
        * cris: New directory.
        * cris/crt0.S, cris/crtn.c, cris/gensyscalls, cris/linunistd.h,
        cris/outbyte.c, cris/configure.in, cris/crti.c, cris/lcrt0.c,
        cris/Makefile.in, cris/setup.S, cris/configure: New files.
This commit is contained in:
Jeff Johnston
2005-01-27 22:57:32 +00:00
parent 8cc85fff15
commit 3a26703803
16 changed files with 2665 additions and 50 deletions

9
libgloss/cris/outbyte.c Normal file
View File

@@ -0,0 +1,9 @@
/* Low-level kind-of-support for CRIS. Mostly used as a placeholder
function. Too small and obvious to warrant a copyright notice. */
#include <stdio.h>
void
outbyte (int ch)
{
write (1, &ch, 1);
}