Fixed copy&paste typo in synth_greenpak4

This commit is contained in:
Clifford Wolf 2015-09-16 09:39:31 +02:00
parent c5352f45c3
commit d9cecabb87
1 changed files with 3 additions and 3 deletions

View File

@ -34,8 +34,8 @@ bool check_label(bool &active, std::string run_from, std::string run_to, std::st
return active;
}
struct SynthIce40Pass : public Pass {
SynthIce40Pass() : Pass("synth_greenpak4", "synthesis for GreenPAK4 FPGAs") { }
struct SynthGreenPAK4Pass : public Pass {
SynthGreenPAK4Pass() : Pass("synth_greenpak4", "synthesis for GreenPAK4 FPGAs") { }
virtual void help()
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
@ -224,6 +224,6 @@ struct SynthIce40Pass : public Pass {
log_pop();
}
} SynthIce40Pass;
} SynthGreenPAK4Pass;
PRIVATE_NAMESPACE_END