38 lines
1.5 KiB
C++
38 lines
1.5 KiB
C++
#ifndef BUILD_DECODER_MODULES_H
|
|
#define BUILD_DECODER_MODULES_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "circuit_library.h"
|
|
#include "decoder_library.h"
|
|
#include "module_manager.h"
|
|
#include "mux_library.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
ModuleId build_frame_memory_decoder_module(ModuleManager& module_manager,
|
|
const DecoderLibrary& decoder_lib,
|
|
const DecoderId& decoder);
|
|
|
|
ModuleId build_bl_memory_decoder_module(ModuleManager& module_manager,
|
|
const DecoderLibrary& decoder_lib,
|
|
const DecoderId& decoder);
|
|
|
|
ModuleId build_wl_memory_decoder_module(ModuleManager& module_manager,
|
|
const DecoderLibrary& decoder_lib,
|
|
const DecoderId& decoder);
|
|
|
|
void build_mux_local_decoder_modules(ModuleManager& module_manager,
|
|
const MuxLibrary& mux_lib,
|
|
const CircuitLibrary& circuit_lib);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|