blob: 590f9ea8e5c18942a5941d19bcfef4e42c19585c [file] [log] [blame]
#ifndef NETLIST_VISUALIZER_H
#define NETLIST_VISUALIZER_H
#include <string>
#include "odin_types.h"
void graphVizOutputNetlist(std::string path, const char* name, short marker_value, netlist_t *input_netlist);
void graphVizOutputCombinationalNet(std::string path, const char* name, short marker_value, nnode_t *current_node);
#endif