From 3220bdf60d7fefac3510317a9443ba57b98853e6 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 4 Jul 2021 19:14:11 +0200 Subject: [PATCH] Added device class templates for CapWithBulk and ResWithBulk --- src/db/db/dbNetlistDeviceClasses.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/db/db/dbNetlistDeviceClasses.cc b/src/db/db/dbNetlistDeviceClasses.cc index 915f03f27..ad1fae98f 100644 --- a/src/db/db/dbNetlistDeviceClasses.cc +++ b/src/db/db/dbNetlistDeviceClasses.cc @@ -30,7 +30,9 @@ namespace db // The built-in device class templates static tl::RegisteredClass dct_cap (new db::device_class_template ("CAP")); +static tl::RegisteredClass dct_cap_with_bulk (new db::device_class_template ("CAP3")); static tl::RegisteredClass dct_res (new db::device_class_template ("RES")); +static tl::RegisteredClass dct_res_with_bulk (new db::device_class_template ("RES3")); static tl::RegisteredClass dct_ind (new db::device_class_template ("IND")); static tl::RegisteredClass dct_diode (new db::device_class_template ("DIODE")); static tl::RegisteredClass dct_mos3 (new db::device_class_template ("MOS3"));