OpenFPGA/openfpga/src/fabric/build_memory_modules.h

28 lines
943 B
C
Raw Normal View History

2020-02-12 21:06:38 -06:00
#ifndef BUILD_MEMORY_MODULES_H
#define BUILD_MEMORY_MODULES_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
2020-05-25 23:15:16 -05:00
#include "decoder_library.h"
2020-02-12 21:06:38 -06:00
#include "circuit_library.h"
#include "mux_library.h"
#include "module_manager.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void build_memory_modules(ModuleManager& module_manager,
2020-05-25 23:15:16 -05:00
DecoderLibrary& arch_decoder_lib,
2020-02-12 21:06:38 -06:00
const MuxLibrary& mux_lib,
const CircuitLibrary& circuit_lib,
const e_config_protocol_type& sram_orgz_type);
} /* end namespace openfpga */
#endif