remove extraneous space
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 15 May 2023 18:58:13 +0000 (19:58 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 2 Jun 2023 18:51:18 +0000 (19:51 +0100)
src/openpower/sv/sv_analysis.py

index 2ebd502764dffc2149e3d1ebe4ccd5b84513b3dd..01dda3a83a9befb93a77a1a646ddb7522bce0938 100644 (file)
@@ -226,7 +226,7 @@ class Format(enum.Enum):
                   "(value=%x, width=%x) */" % (value, width)
 
         def declaration_vhdl(value, width):
-            yield "    type sv_%s _rom_array_t is " \
+            yield "    type sv_%s_rom_array_t is " \
                 "array(0 to %d) of sv_decode_rom_t;" % (value, width)
 
         for value in values: