picker/include/codegen/sv.hpp

15 lines
664 B
C++

#pragma once
#include <bits/stdc++.h>
#include "picker.hpp"
#include "parser/sv.hpp"
namespace picker { namespace codegen {
std::vector<picker::sv_signal_define> gen_sv_param(nlohmann::json &global_render_data,
const std::vector<picker::sv_module_define> &sv_module_result,
const std::vector<picker::sv_signal_define> &internal_signal,
nlohmann::json &signal_tree_json,
const std::string &wave_file_name,
const std::string &simulator);
void gen_uvm_param(picker::pack_opts &opts, uvm_transaction_define transaction,std::string filename);
}} // namespace picker::codegen