Remove unused ft_MOS truth tables.
This commit is contained in:
parent
668781788b
commit
f5ba93eeb6
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#ifdef HAVE_CVS_IDENT
|
||||
#ident "$Id: draw_tt.c,v 1.20 2005/02/12 23:05:25 steve Exp $"
|
||||
#ident "$Id: draw_tt.c,v 1.21 2005/06/12 21:56:16 steve Exp $"
|
||||
#endif
|
||||
|
||||
# include <stdio.h>
|
||||
|
|
@ -223,6 +223,7 @@ static void draw_BUFIF1(void)
|
|||
printf("};\n");
|
||||
}
|
||||
#endif
|
||||
#if 0
|
||||
static void draw_PMOS(void)
|
||||
{
|
||||
unsigned i0, i1, i2, i3;
|
||||
|
|
@ -256,7 +257,8 @@ static void draw_PMOS(void)
|
|||
|
||||
printf("};\n");
|
||||
}
|
||||
|
||||
#endif
|
||||
#if 0
|
||||
static void draw_NMOS(void)
|
||||
{
|
||||
unsigned i0, i1, i2, i3;
|
||||
|
|
@ -290,7 +292,7 @@ static void draw_NMOS(void)
|
|||
|
||||
printf("};\n");
|
||||
}
|
||||
|
||||
#endif
|
||||
static void draw_MUXX(void)
|
||||
{
|
||||
unsigned i0, i1, i2, i3;
|
||||
|
|
@ -742,8 +744,6 @@ static void draw_oct_table()
|
|||
main()
|
||||
{
|
||||
printf("# include \"logic.h\"\n");
|
||||
draw_PMOS();
|
||||
draw_NMOS();
|
||||
draw_MUXX();
|
||||
draw_EEQ();
|
||||
draw_NAND();
|
||||
|
|
@ -761,6 +761,9 @@ main()
|
|||
|
||||
/*
|
||||
* $Log: draw_tt.c,v $
|
||||
* Revision 1.21 2005/06/12 21:56:16 steve
|
||||
* Remove unused ft_MOS truth tables.
|
||||
*
|
||||
* Revision 1.20 2005/02/12 23:05:25 steve
|
||||
* Cleanup unused truth tables.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#ifdef HAVE_CVS_IDENT
|
||||
#ident "$Id: logic.h,v 1.16 2005/05/14 19:43:23 steve Exp $"
|
||||
#ident "$Id: logic.h,v 1.17 2005/06/12 21:56:16 steve Exp $"
|
||||
#endif
|
||||
|
||||
# include "vvp_net.h"
|
||||
|
|
@ -122,8 +122,6 @@ class vvp_fun_muxz : public vvp_net_fun_t {
|
|||
|
||||
// table functor types
|
||||
|
||||
extern const unsigned char ft_PMOS[];
|
||||
extern const unsigned char ft_NMOS[];
|
||||
extern const unsigned char ft_MUXX[];
|
||||
extern const unsigned char ft_EEQ[];
|
||||
extern const unsigned char ft_NAND[];
|
||||
|
|
@ -134,10 +132,12 @@ extern const unsigned char ft_TRIAND[];
|
|||
extern const unsigned char ft_TRIOR[];
|
||||
extern const unsigned char ft_XNOR[];
|
||||
extern const unsigned char ft_XOR[];
|
||||
extern const unsigned char ft_var[];
|
||||
|
||||
/*
|
||||
* $Log: logic.h,v $
|
||||
* Revision 1.17 2005/06/12 21:56:16 steve
|
||||
* Remove unused ft_MOS truth tables.
|
||||
*
|
||||
* Revision 1.16 2005/05/14 19:43:23 steve
|
||||
* Move functor delays to vvp_delay_fun object.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue