blob: f7130a2ebf5ae918143b587d9a46e92d420d8d55 [file] [log] [blame]
#ifndef SYSTEMVERILOG_PLUGIN_CONST2AST_H
#define SYSTEMVERILOG_PLUGIN_CONST2AST_H
#include "frontends/ast/ast.h"
#include <string>
namespace systemverilog_plugin
{
// this function converts a Verilog constant to an AST_CONSTANT node
Yosys::AST::AstNode *const2ast(std::string code, char case_type = 0, bool warn_z = false);
}
#endif // SYSTEMVERILOG_PLUGIN_CONST2AST_H