Fix tabulation

This commit is contained in:
Eddie Hung 2019-02-08 13:17:02 -08:00
parent aa66d8f12f
commit afc3c4b613
1 changed files with 28 additions and 28 deletions

View File

@ -237,10 +237,10 @@ void AigerReader::parse_aiger_ascii()
RTLIL::Wire *i1_wire = createWireIfNotExists(module, l2); RTLIL::Wire *i1_wire = createWireIfNotExists(module, l2);
RTLIL::Wire *i2_wire = createWireIfNotExists(module, l3); RTLIL::Wire *i2_wire = createWireIfNotExists(module, l3);
RTLIL::Cell *and_cell = module->addCell(NEW_ID, "$_AND_"); RTLIL::Cell *and_cell = module->addCell(NEW_ID, "$_AND_");
and_cell->setPort("\\A", i1_wire); and_cell->setPort("\\A", i1_wire);
and_cell->setPort("\\B", i2_wire); and_cell->setPort("\\B", i2_wire);
and_cell->setPort("\\Y", o_wire); and_cell->setPort("\\Y", o_wire);
} }
std::getline(f, line); // Ignore up to start of next line std::getline(f, line); // Ignore up to start of next line
} }
@ -345,42 +345,42 @@ void AigerReader::parse_aiger_binary()
RTLIL::Wire *i1_wire = createWireIfNotExists(module, l2); RTLIL::Wire *i1_wire = createWireIfNotExists(module, l2);
RTLIL::Wire *i2_wire = createWireIfNotExists(module, l3); RTLIL::Wire *i2_wire = createWireIfNotExists(module, l3);
RTLIL::Cell *and_cell = module->addCell(NEW_ID, "$_AND_"); RTLIL::Cell *and_cell = module->addCell(NEW_ID, "$_AND_");
and_cell->setPort("\\A", i1_wire); and_cell->setPort("\\A", i1_wire);
and_cell->setPort("\\B", i2_wire); and_cell->setPort("\\B", i2_wire);
and_cell->setPort("\\Y", o_wire); and_cell->setPort("\\Y", o_wire);
} }
std::getline(f, line); // Ignore up to start of next line std::getline(f, line); // Ignore up to start of next line
} }
struct AigerFrontend : public Frontend { struct AigerFrontend : public Frontend {
AigerFrontend() : Frontend("aiger", "read AIGER file") { } AigerFrontend() : Frontend("aiger", "read AIGER file") { }
void help() YS_OVERRIDE void help() YS_OVERRIDE
{ {
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
log(" read_aiger [options] [filename]\n");
log("\n");
log("Load module from an AIGER file into the current design.\n");
log("\n"); log("\n");
log(" -module_name <module_name>\n"); log(" read_aiger [options] [filename]\n");
log(" Name of module to be created (default: <filename>)" log("\n");
log("\n"); log("Load module from an AIGER file into the current design.\n");
log(" -clk_name <wire_name>\n"); log("\n");
log(" AIGER latches to be transformed into posedge DFFs clocked by wire of"); log(" -module_name <module_name>\n");
log(" this name (default: clk)\n"); log(" Name of module to be created (default: <filename>)"
#ifdef _WIN32 #ifdef _WIN32
"top" // FIXME "top" // FIXME
#else #else
"<filename>" "<filename>"
#endif #endif
")\n"); ")\n");
log("\n"); log("\n");
} log(" -clk_name <wire_name>\n");
void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE log(" AIGER latches to be transformed into posedge DFFs clocked by wire of");
{ log(" this name (default: clk)\n");
log_header(design, "Executing AIGER frontend.\n"); log("\n");
}
void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
{
log_header(design, "Executing AIGER frontend.\n");
RTLIL::IdString clk_name = "\\clk"; RTLIL::IdString clk_name = "\\clk";
RTLIL::IdString module_name; RTLIL::IdString module_name;
@ -410,7 +410,7 @@ struct AigerFrontend : public Frontend {
AigerReader reader(design, *f, module_name, clk_name); AigerReader reader(design, *f, module_name, clk_name);
reader.parse_aiger(); reader.parse_aiger();
} }
} AigerFrontend; } AigerFrontend;
YOSYS_NAMESPACE_END YOSYS_NAMESPACE_END