Merge branch 'master' into verilog-ams
[sverilog.git] / targets.cc
blob7b2adb9f95e0e91f3c13833b067432d6016db026
1 /*
2 * Copyright (c) 1998 Stephen Williams (steve@icarus.com)
4 * This source code is free software; you can redistribute it
5 * and/or modify it in source code form under the terms of the GNU
6 * General Public License as published by the Free Software
7 * Foundation; either version 2 of the License, or (at your option)
8 * any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 #ifdef HAVE_CVS_IDENT
20 #ident "$Id: targets.cc,v 1.12 2004/12/11 02:31:28 steve Exp $"
21 #endif
23 # include "config.h"
25 # include "target.h"
27 extern const struct target tgt_dll;
28 #ifdef WITH_T_XNF
29 extern const struct target tgt_xnf;
30 #endif
32 const struct target *target_table[] = {
33 &tgt_dll,
34 #ifdef WITH_T_XNF
35 &tgt_xnf,
36 #endif
41 * $Log: targets.cc,v $
42 * Revision 1.12 2004/12/11 02:31:28 steve
43 * Rework of internals to carry vectors through nexus instead
44 * of single bits. Make the ivl, tgt-vvp and vvp initial changes
45 * down this path.
47 * Revision 1.11 2002/08/12 01:35:01 steve
48 * conditional ident string using autoconfig.
50 * Revision 1.10 2002/08/11 23:39:33 steve
51 * Remove VVM option.
53 * Revision 1.9 2002/02/16 03:18:54 steve
54 * Make vvm optional, normally off.
56 * Revision 1.8 2001/07/25 03:10:50 steve
57 * Create a config.h.in file to hold all the config
58 * junk, and support gcc 3.0. (Stephan Boettcher)
60 * Revision 1.7 2000/12/02 04:50:32 steve
61 * Make the null target into a loadable target.
63 * Revision 1.6 2000/08/12 16:34:37 steve
64 * Start stub for loadable targets.
66 * Revision 1.5 2000/02/23 02:56:56 steve
67 * Macintosh compilers do not support ident.
69 * Revision 1.4 1999/05/01 02:57:53 steve
70 * Handle much more complex event expressions.
72 * Revision 1.3 1999/01/24 01:35:36 steve
73 * Support null target for generating no output.
75 * Revision 1.2 1998/11/16 05:03:53 steve
76 * Add the sigfold function that unlinks excess
77 * signal nodes, and add the XNF target.
79 * Revision 1.1 1998/11/03 23:29:07 steve
80 * Introduce verilog to CVS.