diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-03-01 12:59:07 -0800 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-03-01 12:59:07 -0800 |
commit | 03237de68605bb6eae73b96379faab0af6f8ce73 (patch) | |
tree | 44b635c5c1e379c1cdb974722db7c860d41a58f1 /backends/edif | |
parent | 66fd6396d4795ea9559cbbd1560387e7d7e79596 (diff) | |
download | yosys-03237de68605bb6eae73b96379faab0af6f8ce73.tar.gz yosys-03237de68605bb6eae73b96379faab0af6f8ce73.tar.bz2 yosys-03237de68605bb6eae73b96379faab0af6f8ce73.zip |
Fix "write_edif -gndvccy"
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'backends/edif')
-rw-r--r-- | backends/edif/edif.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc index 2d25f879d..7e30b67af 100644 --- a/backends/edif/edif.cc +++ b/backends/edif/edif.cc @@ -130,7 +130,7 @@ struct EdifBackend : public Backend { bool port_rename = false; bool attr_properties = false; std::map<RTLIL::IdString, std::map<RTLIL::IdString, int>> lib_cell_ports; - bool nogndvcc = false, gndvccy = true; + bool nogndvcc = false, gndvccy = false; CellTypes ct(design); EdifNames edif_names; |