Skip to content

Commit

Permalink
Merge branch 'master' into feature/simulation-wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
joern274 committed Feb 29, 2024
2 parents 2d61756 + 62b5f7c commit d9fc523
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
* removed layouter code used prior to version 3.1.0 - thus removing the setting option to use that code
* added setting option to dump junction layout input data for experts to debug in case of layout errors
* miscellaneous
* added INIT field declaration to FF-gate-types in example library
* added drag'n drop feature allowing to move several nodes in graph view at same time
* added functions to Python GUI API to create, modifiy and delete views
* added GUI PluginParameter type `ComboBox` for parameters that can be requested from plugin
Expand Down
14 changes: 10 additions & 4 deletions plugins/gate_libraries/definitions/example_library.hgl
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,9 @@
"state": "IQ",
"neg_state": "IQN",
"next_state": "(D & CE)",
"clocked_on": "C"
"clocked_on": "C",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2128,7 +2130,9 @@
"neg_state": "IQN",
"next_state": "(D & CE)",
"clocked_on": "C",
"preset_on": "S"
"preset_on": "S",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2307,7 +2311,9 @@
"clear_on": "R",
"preset_on": "S",
"state_clear_preset": "L",
"neg_state_clear_preset": "H"
"neg_state_clear_preset": "H",
"data_category": "generic",
"data_identifier": "INIT"
},
"pin_groups": [
{
Expand Down Expand Up @@ -2446,4 +2452,4 @@
]
}
]
}
}

0 comments on commit d9fc523

Please sign in to comment.