From 81fbcc2ef88e0e4f0e7676c31f4769ec3229375b Mon Sep 17 00:00:00 2001 From: Sascha Tommasone Date: Mon, 22 Jun 2026 09:40:41 -0400 Subject: [PATCH] new delay gate type property --- .../hal_core/netlist/gate_library/enums/gate_type_property.h | 3 ++- src/netlist/gate_library/enums/gate_type_property.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/hal_core/netlist/gate_library/enums/gate_type_property.h b/include/hal_core/netlist/gate_library/enums/gate_type_property.h index af06120f6987..0188e8ff3082 100644 --- a/include/hal_core/netlist/gate_library/enums/gate_type_property.h +++ b/include/hal_core/netlist/gate_library/enums/gate_type_property.h @@ -47,6 +47,7 @@ namespace hal pll, /**< PLL gate type. **/ oscillator, /**< Oscillator gate type. **/ scan, /**< Scan gate type. **/ + delay, /**< Delay gate type. **/ c_buffer, /**< Buffer gate type. **/ c_inverter, /**< Inverter gate type. **/ c_and, /**< AND gate type. **/ @@ -66,4 +67,4 @@ namespace hal template<> std::map EnumStrings::data; -} // namespace hal \ No newline at end of file +} // namespace hal diff --git a/src/netlist/gate_library/enums/gate_type_property.cpp b/src/netlist/gate_library/enums/gate_type_property.cpp index ff9eee9e8f3a..f683d779351e 100644 --- a/src/netlist/gate_library/enums/gate_type_property.cpp +++ b/src/netlist/gate_library/enums/gate_type_property.cpp @@ -18,6 +18,7 @@ namespace hal {GateTypeProperty::pll, "pll"}, {GateTypeProperty::oscillator, "oscillator"}, {GateTypeProperty::scan, "scan"}, + {GateTypeProperty::delay, "delay"}, {GateTypeProperty::c_buffer, "c_buffer"}, {GateTypeProperty::c_inverter, "c_inverter"}, {GateTypeProperty::c_and, "c_and"}, @@ -33,4 +34,4 @@ namespace hal {GateTypeProperty::c_half_adder, "c_half_adder"}, {GateTypeProperty::c_full_adder, "c_full_adder"}, {GateTypeProperty::c_lut, "c_lut"}}; -} \ No newline at end of file +}