2001-11-06 04:07:21 +01:00
|
|
|
#ifndef __logic_H
|
|
|
|
|
#define __logic_H
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2000 Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2003-07-30 03:13:28 +02:00
|
|
|
#ident "$Id: logic.h,v 1.7 2003/07/30 01:13:29 steve Exp $"
|
2001-11-06 04:07:21 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "functor.h"
|
2002-07-05 22:08:44 +02:00
|
|
|
# include <stddef.h>
|
2001-11-06 04:07:21 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Table driven functor. oval = table[ival];
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-14 03:04:49 +01:00
|
|
|
class table_functor_s: public functor_s {
|
|
|
|
|
|
|
|
|
|
public:
|
2001-11-06 04:07:21 +01:00
|
|
|
typedef const unsigned char *truth_t;
|
2001-12-14 03:04:49 +01:00
|
|
|
explicit table_functor_s(truth_t t, unsigned str0 =6, unsigned str1 =6);
|
2001-11-06 04:07:21 +01:00
|
|
|
virtual ~table_functor_s();
|
2001-12-14 03:04:49 +01:00
|
|
|
|
2001-11-06 04:07:21 +01:00
|
|
|
virtual void set(vvp_ipoint_t i, bool push, unsigned val, unsigned str);
|
2001-12-14 03:04:49 +01:00
|
|
|
|
|
|
|
|
private:
|
2001-11-06 04:07:21 +01:00
|
|
|
truth_t table;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// table functor types
|
|
|
|
|
|
|
|
|
|
extern const unsigned char ft_AND[];
|
|
|
|
|
extern const unsigned char ft_BUF[];
|
|
|
|
|
extern const unsigned char ft_BUFIF0[];
|
|
|
|
|
extern const unsigned char ft_BUFIF1[];
|
2002-01-12 05:02:16 +01:00
|
|
|
extern const unsigned char ft_BUFZ[];
|
2001-11-06 04:07:21 +01:00
|
|
|
extern const unsigned char ft_PMOS[];
|
|
|
|
|
extern const unsigned char ft_NMOS[];
|
2002-08-29 05:04:01 +02:00
|
|
|
extern const unsigned char ft_MUXX[];
|
2001-11-06 04:07:21 +01:00
|
|
|
extern const unsigned char ft_MUXZ[];
|
|
|
|
|
extern const unsigned char ft_EEQ[];
|
|
|
|
|
extern const unsigned char ft_NAND[];
|
|
|
|
|
extern const unsigned char ft_NOR[];
|
|
|
|
|
extern const unsigned char ft_NOT[];
|
|
|
|
|
extern const unsigned char ft_OR[];
|
2003-07-30 03:13:28 +02:00
|
|
|
extern const unsigned char ft_TRIAND[];
|
|
|
|
|
extern const unsigned char ft_TRIOR[];
|
2001-11-06 04:07:21 +01:00
|
|
|
extern const unsigned char ft_XNOR[];
|
|
|
|
|
extern const unsigned char ft_XOR[];
|
|
|
|
|
extern const unsigned char ft_var[];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: logic.h,v $
|
2003-07-30 03:13:28 +02:00
|
|
|
* Revision 1.7 2003/07/30 01:13:29 steve
|
|
|
|
|
* Add support for triand and trior.
|
|
|
|
|
*
|
2002-08-29 05:04:01 +02:00
|
|
|
* Revision 1.6 2002/08/29 03:04:01 steve
|
|
|
|
|
* Generate x out for x select on wide muxes.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.5 2002/08/12 01:35:08 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-07-05 22:08:44 +02:00
|
|
|
* Revision 1.4 2002/07/05 20:08:44 steve
|
|
|
|
|
* Count different types of functors.
|
|
|
|
|
*
|
2002-01-12 05:02:16 +01:00
|
|
|
* Revision 1.3 2002/01/12 04:02:16 steve
|
|
|
|
|
* Support the BUFZ logic device.
|
|
|
|
|
*
|
2001-12-14 03:04:49 +01:00
|
|
|
* Revision 1.2 2001/12/14 02:04:49 steve
|
|
|
|
|
* Support strength syntax on functors.
|
|
|
|
|
*
|
2001-11-06 04:07:21 +01:00
|
|
|
* Revision 1.1 2001/11/06 03:07:22 steve
|
|
|
|
|
* Code rearrange. (Stephan Boettcher)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#endif // __logic_H
|