mirror of
https://github.com/WindowsNT351/CE-Collections.git
synced 2025-12-26 17:10:25 +08:00
8 lines
201 B
C
8 lines
201 B
C
int __cdecl _inp(unsigned);
|
|
int __cdecl _outp(unsigned, int);
|
|
|
|
#pragma intrinsic(_inp, _outp)
|
|
|
|
#define READ_PORT_UCHAR(a) _inp((unsigned)a)
|
|
#define WRITE_PORT_UCHAR(a, b) _outp((unsigned)a, (int)b)
|