From 6891760f47dd8a3e1a5ff8ce76a70bdceb48a9ca Mon Sep 17 00:00:00 2001 From: Jason Fan Date: Tue, 6 Feb 2024 11:04:11 -0500 Subject: [PATCH] update scripts --- WriteVHDLSyntax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WriteVHDLSyntax.py b/WriteVHDLSyntax.py index ff50b21..7da2d6b 100644 --- a/WriteVHDLSyntax.py +++ b/WriteVHDLSyntax.py @@ -858,7 +858,7 @@ def writeTBConstants(memDict, memInfoDict, procs, emData_dir, sector): string_constants += " constant inputFileNameEnding".ljust(str_len) + ": string := \"_" + sector + ".dat\"; -- " + sector + " specifies the nonant/sector the testvectors represent\n" string_constants += " constant outputFileNameEnding".ljust(str_len) + ": string := \".txt\";\n" string_constants += " constant debugFileNameEnding".ljust(str_len) + ": string := \".debug.txt\";\n\n" - string_constants += " signal dummy : STD_LOGIC := '0';\n\n -- dummy tb signal for inputs into sectorproc" + string_constants += " signal dummy : STD_LOGIC := '0';\n\n -- dummy tb signal for inputs into sectorproc\n" string_constants += " signal dummyaddr : t_as_36_addr := (others => '0');\n\n -- dummy tb signal for inputs into sectorproc" return string_constants