diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-11-24 12:16:19 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-11-24 12:16:19 +0100 |
commit | ab2d8e5c8cc78eb60f380fbdf5b09f2401ce27f6 (patch) | |
tree | be7439f45aef836bdf9362809ee7aae9c47ab4e4 /frontends | |
parent | 8ff229a3ead38f89b0dddde9d952c8677d89f980 (diff) | |
download | yosys-ab2d8e5c8cc78eb60f380fbdf5b09f2401ce27f6.tar.gz yosys-ab2d8e5c8cc78eb60f380fbdf5b09f2401ce27f6.tar.bz2 yosys-ab2d8e5c8cc78eb60f380fbdf5b09f2401ce27f6.zip |
Added PRIM_DLATCHRS support to verific front-end
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/verific/verific.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontends/verific/verific.cc b/frontends/verific/verific.cc index e40f24cb0..45cd4f3fc 100644 --- a/frontends/verific/verific.cc +++ b/frontends/verific/verific.cc @@ -314,6 +314,16 @@ static bool import_netlist_instance_cells(RTLIL::Module *module, std::map<Net*, return true; } + if (inst->Type() == PRIM_DLATCHRS) + { + if (inst->GetSet()->IsGnd() && inst->GetReset()->IsGnd()) + module->addDlatch(RTLIL::escape_id(inst->Name()), net_map.at(inst->GetControl()), net_map.at(inst->GetInput()), net_map.at(inst->GetOutput())); + else + module->addDlatchsr(RTLIL::escape_id(inst->Name()), net_map.at(inst->GetControl()), net_map.at(inst->GetSet()), net_map.at(inst->GetReset()), + net_map.at(inst->GetInput()), net_map.at(inst->GetOutput())); + return true; + } + #define IN operatorInput(inst, net_map) #define IN1 operatorInput1(inst, net_map) #define IN2 operatorInput2(inst, net_map) |