* as/link/lkar.h: sgetl and sputl are independent of endianness
[fw/sdcc] / device / include / ser.h
1 /*KA******************************************************************
2 * PROJECT: PLOne/8052
3 **********************************************************************
4 * FILE: ser.h
5 **********************************************************************
6 * CHANGES:
7 * date      author            description
8 * --------------------------------------------------------------------
9 * 04/26/99  we                update
10 * 04/27/99  we                add comments/header
11 **********************************************************************
12 * DESCRIPTION:
13 * This file is the header to be included by modules which use the
14 * ser.c module.
15 **********************************************************************
16 * FUNCTIONS DECLARED:
17 * see ser.c
18 **********************************************************************
19 * COMPILE TIME OPTIONS: -
20 * DEBUG OPTIONS: -
21 ******************************************************************KE*/
22 /*      $Id$    */
23
24 #ifndef _SER_H_
25 #define _SER_H_
26
27 void ser_init(void);
28 void ser_interrupt_handler(void) __interrupt 4 __using 1;
29 void ser_putc(unsigned char);
30 unsigned char ser_getc(void);
31 void ser_printString(char *String);
32 char ser_charAvail(void);
33
34 /*********************End of File************************************/
35 #endif