@@ -84,7 +84,6 @@ def compile_rdl(infile: str,
8484def generate (root : Node , outdir : str ,
8585 asyncoutput : bool = False ,
8686 legacy_block_access : bool = True ,
87- legacy_enum_type : bool = True ,
8887 copy_library : bool = False ,
8988 skip_systemrdl_name_and_desc_in_docstring : bool = False ,
9089 hashing_mode : NodeHashingMethod = NodeHashingMethod .PYTHONHASH ) -> List [str ]:
@@ -96,8 +95,6 @@ def generate(root: Node, outdir: str,
9695 outdir: directory to store the result in
9796 legacy_block_access: If set to True the code build a register model the legacy array block
9897 access as opposed to the newer list based
99- legacy_enum_type: If set to True the code with build with the old style IntEnum rather than
100- the new style SystemRDLEnum
10198
10299 Returns:
103100 List of strings with the module names generated
@@ -108,7 +105,6 @@ def generate(root: Node, outdir: str,
108105 root , outdir , # type: ignore[no-untyped-call]
109106 asyncoutput = asyncoutput ,
110107 legacy_block_access = legacy_block_access ,
111- legacy_enum_type = legacy_enum_type ,
112108 skip_library_copy = not copy_library ,
113109 skip_systemrdl_name_and_desc_in_docstring =
114110 skip_systemrdl_name_and_desc_in_docstring ,
@@ -174,7 +170,6 @@ def generate(root: Node, outdir: str,
174170 _ = generate (root , str (output_path / folder_parts ),
175171 asyncoutput = asyncoutput ,
176172 legacy_block_access = legacy ,
177- legacy_enum_type = legacy ,
178173 copy_library = CommandLineArgs .copy_libraries ,
179174 skip_systemrdl_name_and_desc_in_docstring = skip_name_and_desc_in_docstring ,
180175 hashing_mode = hashing_method )
0 commit comments