64 lines
2.0 KiB
C
64 lines
2.0 KiB
C
|
|
#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
|
||
|
|
*/
|
||
|
|
#if !defined(WINNT)
|
||
|
|
#ident "$Id: logic.h,v 1.1 2001/11/06 03:07:22 steve Exp $"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
# include "functor.h"
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Table driven functor. oval = table[ival];
|
||
|
|
*/
|
||
|
|
|
||
|
|
struct table_functor_s: public functor_s {
|
||
|
|
typedef const unsigned char *truth_t;
|
||
|
|
explicit table_functor_s(truth_t t);
|
||
|
|
virtual ~table_functor_s();
|
||
|
|
virtual void set(vvp_ipoint_t i, bool push, unsigned val, unsigned str);
|
||
|
|
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[];
|
||
|
|
extern const unsigned char ft_PMOS[];
|
||
|
|
extern const unsigned char ft_NMOS[];
|
||
|
|
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[];
|
||
|
|
extern const unsigned char ft_XNOR[];
|
||
|
|
extern const unsigned char ft_XOR[];
|
||
|
|
extern const unsigned char ft_var[];
|
||
|
|
|
||
|
|
/*
|
||
|
|
* $Log: logic.h,v $
|
||
|
|
* Revision 1.1 2001/11/06 03:07:22 steve
|
||
|
|
* Code rearrange. (Stephan Boettcher)
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#endif // __logic_H
|