Subversion Repositories Shiroi

Rev

Rev 24 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 nishi 1
/* $Id: io.h 25 2024-08-31 12:29:19Z nishi $ */
2
 
3
#ifndef __IO_H__
4
#define __IO_H__
5
 
25 nishi 6
#if __SDCCCALL == 0
24 nishi 7
#define __sdcccall(x)
8
#endif
9
 
23 nishi 10
unsigned char inp(unsigned char) __sdcccall(0);
11
void outp(unsigned char, unsigned char) __sdcccall(0);
8 nishi 12
 
13
#endif