Port the SB128 code to AROS.
[AROS.git] / rom / exec / rawioinit.c
blobedd296010da7f9d28ea9cf6781c99258d6e6b3fc
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Initialize raw IO
6 Lang: english
7 */
9 /*****i***********************************************************************
11 NAME */
12 #include <proto/exec.h>
14 AROS_LH0(void, RawIOInit,
16 /* LOCATION */
17 struct ExecBase *, SysBase, 84, Exec)
19 /* FUNCTION
20 This is a private function. It initializes raw IO. After you
21 have called this function, you can use RawMayGetChar() and
22 RawPutChar().
24 INPUTS
25 None.
27 RESULT
28 None.
30 NOTES
31 This function is for very low level debugging only.
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 RawPutChar(), RawMayGetChar()
40 INTERNALS
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
46 return;
47 AROS_LIBFUNC_EXIT
48 } /* RawIOInit */