From fee4b887c0963e23ff3a3ee3760845664e22e27c Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Sun, 15 Mar 2026 15:40:10 -0400 Subject: [PATCH] Corrected an issue in ext2spice in which devices extracted as ideal, unmodeled capacitors or resistors are missing a space between the 2nd terminal and the device value in the output netlist. This affects the ability to produce correct output for, for example, a metal fingered capacitor using the "device" property to generate an ideal capacitor in the netlist. --- VERSION | 2 +- ext2spice/ext2spice.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9e0be425..d2da60ef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.620 +8.3.621 diff --git a/ext2spice/ext2spice.c b/ext2spice/ext2spice.c index b116d480..ea00d46b 100644 --- a/ext2spice/ext2spice.c +++ b/ext2spice/ext2spice.c @@ -3140,6 +3140,7 @@ spcdevVisit( if (!has_model) { + fprintf(esSpiceF, " "); esSIvalue(esSpiceF, 1.0E-15 * (double)sdM * (double)dev->dev_cap); spcWriteParams(dev, hierName, scale, l, w, sdM, FALSE); } @@ -3186,6 +3187,7 @@ spcdevVisit( if (!has_model) { + fprintf(esSpiceF, " "); esSIvalue(esSpiceF, 1.0E-15 * (double)sdM * (double)dev->dev_cap); spcWriteParams(dev, hierName, scale, l, w, sdM, FALSE); }