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

⟦a7f88ae43⟧ TextFile

    Length: 478 (0x1de)
    Types: TextFile
    Notes: UNIX file
    Names: »blt.h«

Derivation

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

TextFile

/*
 * @(#)blt.h	3.2	7/14/83
 * @(#)Copyright (C) 1983 by National Semiconductor Corp.
 */

/*
 * Maximum x and y coordinates in the pixel coordinate system:
 *	(0,0) is at the lower left corner of the display.
 */
# define XMAX	607
# define YMAX	799

typedef struct rectangle {
	int	x,
		y,
		bw,
		bh;
} rectangle;

typedef struct form {
	rectangle	r;
	char		*base;	/* Perhaps should be caddr_t... */
	int		xinc;
} form;

typedef enum bltops { mov, bic, or, and, xor } bltops;