Subversion Repositories Shiroi

Rev

Rev 8 | Rev 24 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8 Rev 23
Line 1... Line 1...
1
/* $Id: io.h 8 2024-08-28 16:29:15Z nishi $ */
1
/* $Id: io.h 23 2024-08-31 11:58:03Z nishi $ */
2
 
2
 
3
#ifndef __IO_H__
3
#ifndef __IO_H__
4
#define __IO_H__
4
#define __IO_H__
5
 
5
 
6
unsigned char inp(unsigned char);
6
unsigned char inp(unsigned char) __sdcccall(0);
7
void outp(unsigned char, unsigned char);
7
void outp(unsigned char, unsigned char) __sdcccall(0);
8
 
8
 
9
#endif
9
#endif