Subversion Repositories Shiroi

Rev

Rev 24 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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