/*	SPLIT.H		Splitter/Mapper structures

	(c) 1986	Todor Fay

*/

struct Split {
    struct Split *next;
    short scale, shift, min, max, decscale;
    unsigned char portin, portout, statusin, statusout;
};

struct SplitState {
    long length;
    char name[40];
    struct Split *splitlist;
};
