/* sh-sci.h: A header file for sh-sci * * Copyright (C) 2001 KOMORIYA Takeru * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the file "GPL" for more details. * * Contact to author: * KOMORIYA Takeru, AAF Sendai Lab., Japan * E-mail: komoriya@chmodx.dyndns.org * URL: http://chmodx.dyndns.org/aaf/ */ #ifndef __SH_SCI_H #define __SH_SCI_H extern void scif_init(); extern int scif_puts(const char *s); extern int scif_putc(unsigned char ch); extern void scif_flush (void); extern void scif_disable (void); extern int scif_getc(); extern int scif_getcw(); extern void scif_put_decimal (long a); extern void scif_put_hex (unsigned long a, int digit); #endif /* __SH_SCI_H */