23 lines
430 B
C
23 lines
430 B
C
/* HEADER - P_PAR.H
|
|||
|
|
Copyright (C) Psion PLC 1991-92
|
||
|
|
VER DATE BY DESCRIPTION
|
||
|
|
===== ======== === ===========
|
||
|
|
1.00F 22/10/93 SLT First relase
|
||
|
|
*/
|
||
|
|
#ifndef P_PAR_H
|
||
|
|
#define P_PAR_H
|
||
|
|
|
||
|
|
#include <stdepoc.h>
|
||
|
|
|
||
|
|
#define S_BUSY 0x10
|
||
|
|
#define S_ACK 0x20
|
||
|
|
#define S_ERROR 0x40
|
||
|
|
#define S_PE 0x80
|
||
|
|
#define S_SPARE 0x08
|
||
|
|
#define S_STROBE 0x10
|
||
|
|
#define S_INIT 0x20
|
||
|
|
#define S_AUTOFD 0x40
|
||
|
|
#define S_SELECT 0x80
|
||
|
|
|
||
|
|
#endif // P_PAR_H
|