1 /*--------------------------------------------------------------*/
2 /* This file (user.c) is a placeholder that defines the array	*/
3 /* of information about user-defined subcircuits.  To compile	*/
4 /* a different set of user subcircuits, replace "user.c" in the */
5 /* Makefile with the name of the source code file.  Files	*/
6 /* "flop_mux.c" and "dll.c" are provided as examples.		*/
7 /*--------------------------------------------------------------*/
8 
9 #include <stdio.h>
10 
11 #ifndef _GLOBALS_H
12 #include "globals.h"
13 #endif
14 
15 #include "subckt.h"
16 
17 #define	DEBUG 0
18 #define	dprintf if (DEBUG) lprintf
19 
20 userSubCircuit subs[] =
21 {
22     { NULL,	NULL,	   NULL,      0, 0, NULL}
23 };
24 
25 /*--------------------------------------------------------------*/
26 /* End of user.c empty placeholder library			*/
27 /*--------------------------------------------------------------*/
28