blob: 6376b05eea83716b28124c9f365bcc16fe582ba3 [file]
#ifndef _GET_CMD_H_
#define _GET_CMD_H_
#include "kernel/register.h"
USING_YOSYS_NAMESPACE
struct GetCmd : public Pass {
GetCmd(const std::string& name, const std::string& description) : Pass(name, description) {}
void help() override;
void execute(std::vector<std::string> args, RTLIL::Design* design) override;
virtual std::string TypeName() = 0;
};
#endif // GET_CMD_H_