Skip to content

Commit

Permalink
Merge branch 'feature/word_level_structures' of github.com:emsec/hal …
Browse files Browse the repository at this point in the history
…into feature/word_level_structures
  • Loading branch information
SimonKlx committed Oct 16, 2023
2 parents c0b3cb3 + 72a08aa commit 58a1b0c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1819,8 +1819,9 @@ namespace hal
const std::map<std::string, std::map<std::string, std::vector<std::string>>>& concatinated_pin_groups)
{
std::vector<Module*> all_modules;
for (const auto& [gt_name, pin_groups] : concatinated_pin_groups)
for (const auto& [gt_name_tmp_for, pin_groups] : concatinated_pin_groups)
{
const auto& gt_name = gt_name_tmp_for;
for (const auto& g : nl->get_gates([&gt_name](const auto& g) { return g->get_type()->get_name() == gt_name; }))
{
auto m = nl->create_module("module_" + g->get_name(), g->get_module(), {g});
Expand Down

0 comments on commit 58a1b0c

Please sign in to comment.