16 lines
345 B
C++
16 lines
345 B
C++
#ifndef MUX_BITSTREAM_CONSTANTS_H
|
|
#define MUX_BITSTREAM_CONSTANTS_H
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
/* Default path ID of a unused multiplexer */
|
|
#define DEFAULT_PATH_ID -1
|
|
|
|
/* Default path ID of a unused multiplexer when there are no constant inputs*/
|
|
#define DEFAULT_MUX_PATH_ID 0
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|