2019-10-18 22:59:22 -05:00
|
|
|
#ifndef VERILOG_API_H
|
|
|
|
#define VERILOG_API_H
|
2019-04-26 13:23:47 -05:00
|
|
|
|
2019-10-18 22:59:22 -05:00
|
|
|
#include "vpr_types.h"
|
2019-10-19 20:13:52 -05:00
|
|
|
#include "mux_library.h"
|
2019-10-18 22:59:22 -05:00
|
|
|
#include "module_manager.h"
|
|
|
|
|
|
|
|
void vpr_fpga_verilog(ModuleManager& module_manager,
|
2019-10-19 20:13:52 -05:00
|
|
|
const MuxLibrary& mux_lib,
|
2019-10-18 22:59:22 -05:00
|
|
|
t_vpr_setup vpr_setup,
|
2019-04-26 13:23:47 -05:00
|
|
|
t_arch Arch,
|
|
|
|
char* circuit_name);
|
2019-10-18 22:59:22 -05:00
|
|
|
|
|
|
|
#endif
|