24 lines
773 B
C++
24 lines
773 B
C++
#ifndef OPENFPGA_LUT_TRUTH_TABLE_FIXUP_H
|
|
#define OPENFPGA_LUT_TRUTH_TABLE_FIXUP_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "command.h"
|
|
#include "command_context.h"
|
|
#include "openfpga_context.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
int lut_truth_table_fixup(OpenfpgaContext& openfpga_context,
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|