DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦a8343cf20⟧ TextFile

    Length: 609 (0x261)
    Types: TextFile
    Notes: UNIX file
    Names: »ieeio.h«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/include/sys/ieeio.h« 

TextFile

/*
 * ieeio.h: version 2.2 of 11/12/82
 * Definitions for GPIB interface
 *
 * @(#)ieeio.h	2.2	(National Semiconductor)	11/12/82
 */

/* reply message values */
#define GOODSUM 0 
#define BADSUM -1 

/* gpib command request package */

#define BUFSIZE 5120 

struct ibcommand
{
	char	fcommand;	/* command byte */
	char	fname[80];	/* file name */
	int	i1st;		/* three integer fields */
	int	i2nd;
	int	i3rd;
	char	checkbyte;	/* check sum */
};

/* data block */

struct ibblock
{
	char	iopage[BUFSIZE];	/* transfer data */
	int	nbytes;		/* number of valid bytes in block */
	char	checkbyte;	/* check sum */
};