2019-08-02 17:22:52 -05:00
|
|
|
#ifndef VERILOG_SUBMODULES_H
|
|
|
|
#define VERILOG_SUBMODULES_H
|
2019-08-23 18:39:29 -05:00
|
|
|
|
2019-12-04 16:38:42 -06:00
|
|
|
#include "vpr_types.h"
|
2019-08-23 18:39:29 -05:00
|
|
|
#include "module_manager.h"
|
2019-08-24 20:23:33 -05:00
|
|
|
#include "mux_library.h"
|
2019-08-23 18:39:29 -05:00
|
|
|
|
2019-12-04 16:38:42 -06:00
|
|
|
void print_verilog_submodules(ModuleManager& module_manager,
|
|
|
|
const MuxLibrary& mux_lib,
|
|
|
|
t_sram_orgz_info* cur_sram_orgz_info,
|
|
|
|
const char* verilog_dir,
|
|
|
|
const char* submodule_dir,
|
|
|
|
const t_arch& Arch,
|
|
|
|
const t_syn_verilog_opts& fpga_verilog_opts);
|
|
|
|
|
2019-08-02 17:22:52 -05:00
|
|
|
#endif
|