	primitive mc10153(q_out,d_in,gate_bar,enable_bar,com_clock);

/*   ---  Primitive definition of ECL MC10153 latch  (p3-86)        */

	output q_out;
	reg q_out;
	input d_in,gate_bar,enable_bar,com_clock;

	table

//	D	/G	/CE	CC		state		output
	?	1	?	?	:	?	:	0;
	0	0	0	0	:	?	:	0;
	1	0	0	0	:	?	:	1;
	?	0	0	1	:	?	:	-;
	?	0	1	0	:	?	:	-;
	?	0	1	1	:	?	:	-;
	?	x	?	?	:	?	:	x;

	endtable

	endprimitive
