2001-11-06 04:07:21 +01:00
|
|
|
#ifndef __logic_H
|
|
|
|
|
#define __logic_H
|
|
|
|
|
/*
|
2004-12-11 03:31:25 +01:00
|
|
|
* Copyright (c) 2000-2004 Stephen Williams (steve@icarus.com)
|
2001-11-06 04:07:21 +01:00
|
|
|
*
|
|
|
|
|
* 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
|
2004-12-11 03:31:25 +01:00
|
|
|
#ident "$Id: logic.h,v 1.8 2004/12/11 02:31:29 steve Exp $"
|
2001-11-06 04:07:21 +01:00
|
|
|
#endif
|
|
|
|
|
|
2004-12-11 03:31:25 +01:00
|
|
|
# include "vvp_net.h"
|
2002-07-05 22:08:44 +02:00
|
|
|
# include <stddef.h>
|
2001-11-06 04:07:21 +01:00
|
|
|
|
|
|
|
|
/*
|
2004-12-11 03:31:25 +01:00
|
|
|
* Table driven functor. This kind of node takes 4 inputs and
|
|
|
|
|
* generates a single output. The logic is bitwise, and implemented
|
|
|
|
|
* with a lookup table.
|
2001-11-06 04:07:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2004-12-11 03:31:25 +01:00
|
|
|
class table_functor_s: public vvp_net_fun_t {
|
2001-12-14 03:04:49 +01:00
|
|
|
|
|
|
|
|
public:
|
2001-11-06 04:07:21 +01:00
|
|
|
typedef const unsigned char *truth_t;
|
2004-12-11 03:31:25 +01:00
|
|
|
explicit table_functor_s(truth_t t);
|
2001-11-06 04:07:21 +01:00
|
|
|
virtual ~table_functor_s();
|
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 $
|
2004-12-11 03:31:25 +01:00
|
|
|
* Revision 1.8 2004/12/11 02:31:29 steve
|
|
|
|
|
* Rework of internals to carry vectors through nexus instead
|
|
|
|
|
* of single bits. Make the ivl, tgt-vvp and vvp initial changes
|
|
|
|
|
* down this path.
|
2001-11-06 04:07:21 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#endif // __logic_H
|