mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-16 13:05:36 +00:00
10 lines
207 B
C
10 lines
207 B
C
/* 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);
|
|
}
|