From 15c5e57d77b2e20a5f2863b0fb59bc6ec218c4f6 Mon Sep 17 00:00:00 2001 From: Bugra Onal Date: Tue, 23 May 2023 10:58:43 -0700 Subject: [PATCH] functional should use full sp file path --- compiler/sram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram.py b/compiler/sram.py index cf1f0971..cc269d8f 100644 --- a/compiler/sram.py +++ b/compiler/sram.py @@ -113,7 +113,7 @@ class sram(): # Save a functional simulation file with default period functional(self.s, - os.path.basename(spname), + spname, cycles=200, output_path=OPTS.output_path) print_time("Spice writing", datetime.datetime.now(), start_time)