2019-08-02 17:22:52 -05:00
|
|
|
#ifndef VERILOG_SUBMODULES_H
|
|
|
|
#define VERILOG_SUBMODULES_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
|
|
|
|
|
|
|
void dump_verilog_submodules(ModuleManager& module_manager,
|
2019-08-24 20:23:33 -05:00
|
|
|
const MuxLibrary& mux_lib,
|
2019-08-23 18:39:29 -05:00
|
|
|
t_sram_orgz_info* cur_sram_orgz_info,
|
2019-04-26 13:23:47 -05:00
|
|
|
char* verilog_dir,
|
|
|
|
char* submodule_dir,
|
|
|
|
t_arch Arch,
|
|
|
|
t_det_routing_arch* routing_arch,
|
|
|
|
t_syn_verilog_opts fpga_verilog_opts);
|
2019-08-02 17:22:52 -05:00
|
|
|
#endif
|