opencos-eda 0.3.15__py3-none-any.whl → 0.3.16__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
opencos/deps/defaults.py CHANGED
@@ -29,6 +29,8 @@ KNOWN_EDA_COMMANDS = set([
29
29
  ])
30
30
 
31
31
  SUPPORTED_TARGET_TABLE_KEYS = set([
32
+ 'description', # optional text, for DEPS.json enjoyers
33
+ 'info', # same as 'description'
32
34
  'args',
33
35
  'defines',
34
36
  'parameters',
@@ -36,6 +38,7 @@ SUPPORTED_TARGET_TABLE_KEYS = set([
36
38
  'plusargs',
37
39
  'top',
38
40
  'deps',
41
+ 'files', # identical to 'deps', will append to deps
39
42
  'reqs',
40
43
  'multi',
41
44
  'tags',
@@ -52,6 +55,7 @@ SUPPORTED_TAG_KEYS = set([
52
55
  'with-args',
53
56
  'args',
54
57
  'deps',
58
+ 'files', # identical to 'deps', will append to deps
55
59
  'reqs',
56
60
  'defines',
57
61
  'parameters',
opencos/deps/deps_file.py CHANGED
@@ -172,6 +172,10 @@ def deps_target_get_deps_list(
172
172
  deps = entry.get(default_key, [])
173
173
  deps = dep_str2list(deps)
174
174
 
175
+ # Support for 'files' also, append to return value under 'deps'
176
+ if default_key == 'deps' and 'files' in entry:
177
+ deps += dep_str2list(entry.get('files', []))
178
+
175
179
  # Strip commented out list entries, strip blank strings, preserve non-strings
176
180
  ret = []
177
181
  for dep in deps:
@@ -204,11 +208,15 @@ def deps_list_target_sanitize(
204
208
  ret = {default_key: entry}
205
209
 
206
210
  if ret is not None:
207
- if entry_fix_deps_key and 'deps' in ret:
211
+ if entry_fix_deps_key and (('deps' in ret) or
212
+ ('files' in ret)):
208
213
  ret['deps'] = deps_target_get_deps_list(
209
214
  entry=ret, default_key='deps', deps_file=deps_file,
210
- entry_must_have_default_key=True
215
+ entry_must_have_default_key=False
211
216
  )
217
+ if 'files' in ret:
218
+ # was already appeneded to 'deps' in the ret dict
219
+ del ret['files']
212
220
  else:
213
221
  assert False, f"Can't convert to list {entry=} {default_key=} {target_node=} {deps_file=}"
214
222
 
@@ -4,8 +4,11 @@ a DEPS markup files targets (applying deps, reqs, commands, tags, incdirs, defin
4
4
  CommandDesign ref object
5
5
  '''
6
6
 
7
+ # pylint: disable=too-many-lines
8
+
7
9
  import argparse
8
10
  import copy
11
+ import glob
9
12
  import os
10
13
 
11
14
  from opencos import files
@@ -418,7 +421,8 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
418
421
  self.process_commands()
419
422
  elif key == 'reqs':
420
423
  self.process_reqs()
421
- elif key == 'deps':
424
+ elif key == 'deps' or \
425
+ (key == 'files' and 'deps' not in self.deps_entry):
422
426
  remaining_deps_list += self.process_deps_return_discovered_deps()
423
427
 
424
428
  if self.command_design_ref.tool_changed_respawn:
@@ -613,7 +617,8 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
613
617
  deps_file=self.deps_file)
614
618
  self.apply_reqs(reqs_list)
615
619
 
616
- elif key == 'deps':
620
+ elif key == 'deps' or \
621
+ (key == 'files' and 'deps' not in tags_dict_to_apply):
617
622
 
618
623
  # apply deps (includes commands, stray +define+ +incdir+)
619
624
  # treat the same way we treat self.process_deps_return_discovered_deps
@@ -861,6 +866,7 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
861
866
  '''Returns list of deps targets to continue processing,
862
867
 
863
868
  -- iterates through 'deps' for this target (self.deps_entry['deps'])
869
+ -- note this will also append 'files' if that table key + list/str exists.
864
870
  -- applies to self.command_design_ref
865
871
  '''
866
872
 
@@ -872,7 +878,9 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
872
878
  )
873
879
  return self.get_remaining_and_apply_deps(deps)
874
880
 
875
- def get_remaining_and_apply_deps(self, deps:list) -> list:
881
+ def get_remaining_and_apply_deps(
882
+ self, deps: list
883
+ ) -> list:
876
884
  '''Given a list of deps, process what is supported in a "deps:" table in DEPS
877
885
  markup file.'''
878
886
 
@@ -880,66 +888,98 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
880
888
 
881
889
  # Process deps (list)
882
890
  for dep in deps:
891
+ deps_targets_to_resolve.extend(
892
+ self._get_remaining_and_apply_single_dep(dep)
893
+ )
894
+ return deps_targets_to_resolve
895
+
883
896
 
884
- typ = type(dep)
885
- if typ not in SUPPORTED_DEP_KEYS_BY_TYPE:
886
- self.error(f'{self.target_node=} {dep=} in {self.deps_file=}:' \
887
- + f'has unsupported {type(dep)=} {SUPPORTED_DEP_KEYS_BY_TYPE=}')
888
-
889
- for supported_values in SUPPORTED_DEP_KEYS_BY_TYPE.values():
890
- if '*' in supported_values:
891
- continue
892
- if typ in [dict,list] and any(k not in supported_values for k in dep):
893
- self.error(
894
- f'{self.target_node=} {dep=} in {self.deps_file=}: has dict-key or',
895
- f'list-item not in {SUPPORTED_DEP_KEYS_BY_TYPE[typ]=}'
896
- )
897
-
898
- # In-line commands in the deps list, in case the results need to be in strict file
899
- # order for other deps
900
- if isinstance(dep, dict) and 'commands' in dep:
901
-
902
- commands = dep['commands']
903
- debug(f"Got commands {dep=} for in {self.caller_info}, {commands=}")
904
-
905
- assert isinstance(commands, list), \
906
- f'dep commands must be a list: {dep=} in {self.caller_info}'
907
-
908
- # For this, we need to get the returned commands (to keep strict order w/ other
909
- # deps)
910
- command_tuple = self.get_commands( commands=commands, dep=dep )
911
- # TODO(drew): it might be cleaner to return a dict instead of list, b/c those
912
- # are also ordered and we can pass type information, something like:
913
- deps_targets_to_resolve.append(command_tuple)
914
-
915
-
916
- elif isinstance(dep, str) and \
917
- any(dep.startswith(x) for x in ['+define+', '+incdir+']) and \
918
- self.is_command_design:
919
- # Note: we still support +define+ and +incdir in the deps list.
920
- # check for compile-time Verilog style plusarg, which are supported under targets
921
- # These are not run-time Verilog style plusargs comsumable from within the .sv:
922
- debug(f"Got plusarg (define, incdir) {dep=} for {self.caller_info}")
923
- self.command_design_ref.process_plusarg(plusarg=dep, pwd=self.target_path)
897
+ def _get_remaining_and_apply_single_dep( # pylint: disable=too-many-branches
898
+ self, dep: str
899
+ ) -> list:
900
+ '''Given a single dep, process is and return targets/files that need resolving'''
924
901
 
902
+ deps_targets_to_resolve = []
903
+ typ = type(dep)
904
+ if typ not in SUPPORTED_DEP_KEYS_BY_TYPE:
905
+ self.error(f'{self.target_node=} {dep=} in {self.deps_file=}:' \
906
+ + f'has unsupported {type(dep)=} {SUPPORTED_DEP_KEYS_BY_TYPE=}')
907
+
908
+ for supported_values in SUPPORTED_DEP_KEYS_BY_TYPE.values():
909
+ if '*' in supported_values:
910
+ continue
911
+ if typ in [dict,list] and any(k not in supported_values for k in dep):
912
+ self.error(
913
+ f'{self.target_node=} {dep=} in {self.deps_file=}: has dict-key or',
914
+ f'list-item not in {SUPPORTED_DEP_KEYS_BY_TYPE[typ]=}'
915
+ )
916
+
917
+ # In-line commands in the deps list, in case the results need to be in strict file
918
+ # order for other deps
919
+ if isinstance(dep, dict) and 'commands' in dep:
920
+
921
+ commands = dep['commands']
922
+ debug(f"Got commands {dep=} for in {self.caller_info}, {commands=}")
923
+
924
+ assert isinstance(commands, list), \
925
+ f'dep commands must be a list: {dep=} in {self.caller_info}'
926
+
927
+ # For this, we need to get the returned commands (to keep strict order w/ other
928
+ # deps)
929
+ command_tuple = self.get_commands( commands=commands, dep=dep )
930
+ # TODO(drew): it might be cleaner to return a dict instead of list, b/c those
931
+ # are also ordered and we can pass type information, something like:
932
+ deps_targets_to_resolve.append(command_tuple)
933
+
934
+
935
+ elif isinstance(dep, str) and \
936
+ any(dep.startswith(x) for x in ['+define+', '+incdir+']) and \
937
+ self.is_command_design:
938
+ # Note: we still support +define+ and +incdir in the deps list.
939
+ # check for compile-time Verilog style plusarg, which are supported under targets
940
+ # These are not run-time Verilog style plusargs comsumable from within the .sv:
941
+ debug(f"Got plusarg (define, incdir) {dep=} for {self.caller_info}")
942
+ self.command_design_ref.process_plusarg(plusarg=dep, pwd=self.target_path)
943
+
944
+ else:
945
+ # If we made it this far, dep better be a str type.
946
+ assert isinstance(dep, str), f'{dep=} {type(dep)=} must be str'
947
+ dep_path = self.correct_a_deps_target(target=dep, deps_dir=self.target_path)
948
+ debug(f"Got dep {dep_path=} for in {self.caller_info}")
949
+
950
+ if self.is_command_design and \
951
+ dep_path in self.command_design_ref.targets_dict or \
952
+ dep_path in deps_targets_to_resolve:
953
+ debug(f" - already processed ({dep_path}), skipping")
925
954
  else:
926
- # If we made it this far, dep better be a str type.
927
- assert isinstance(dep, str), f'{dep=} {type(dep)=} must be str'
928
- dep_path = self.correct_a_deps_target(target=dep, deps_dir=self.target_path)
929
- debug(f"Got dep {dep_path=} for in {self.caller_info}")
930
-
931
- if self.is_command_design and \
932
- dep_path in self.command_design_ref.targets_dict or \
933
- dep_path in deps_targets_to_resolve:
934
- debug(" - already processed, skipping")
935
- else:
955
+ # This is where we support files/deps file wildcards via glob syntax.
956
+ # If glob found none, we fall back to a single-file or target
957
+ glob_added_from_dep_path = False
958
+ if any(x in dep_path for x in ('*', '?', '[')):
959
+ try:
960
+ glob_list = glob.glob(dep_path)
961
+ for fpath in glob_list:
962
+ file_exists, _, _ = files.get_source_file(fpath)
963
+ if file_exists:
964
+ debug(f" - raw file ({fpath}), from glob ({dep_path}) adding",
965
+ "to return list...")
966
+ deps_targets_to_resolve.append(fpath) # append
967
+ glob_added_from_dep_path = True
968
+ if glob_list and not glob_added_from_dep_path:
969
+ self.error(f'No files were expanded from glob: {dep_path} in',
970
+ f'{self.caller_info}')
971
+ except Exception as e:
972
+ self.error(f'Unable to add files via glob {dep_path}, in',
973
+ f'{self.caller_info}exception {e}')
974
+
975
+ if not glob_added_from_dep_path:
936
976
  file_exists, _, _ = files.get_source_file(dep_path)
937
977
  if file_exists:
938
- debug(" - raw file, adding to return list...")
978
+ debug(f" - raw file ({dep_path}), adding to return list...")
939
979
  deps_targets_to_resolve.append(dep_path) # append, keeping file order.
940
980
  else:
941
- debug(" - a target (not a file) needing to be resolved, adding to return",
942
- "list...")
981
+ debug(f" - a target non-file ({dep_path}) needs to be resolved,",
982
+ "adding to return list...")
943
983
  deps_targets_to_resolve.append(dep_path) # append, keeping file order.
944
984
 
945
985
  # We return the list of deps or files that still need to be resolved
@@ -947,12 +987,6 @@ class DepsProcessor: # pylint: disable=too-many-instance-attributes
947
987
  # items in this list are either:
948
988
  # -- string (dep or file)
949
989
  # -- tuple (unprocessed commands, in form: (shell_commands_list, work_dir_add_srcs_list))
950
- # TODO(drew): it might be cleaner to return a dict instead of list, b/c those are also
951
- # ordered and we can pass type information, something like:
952
- # { dep1: 'file',
953
- # dep2: 'target',
954
- # dep3: 'command_tuple',
955
- # }
956
990
  return deps_targets_to_resolve
957
991
 
958
992
 
opencos/deps_schema.py CHANGED
@@ -264,6 +264,9 @@ TARGET_TAGS_TABLE = {
264
264
  TARGET_CONTENTS = Or(
265
265
  ARRAY_OR_SPACE_SEPARATED_STRING,
266
266
  {
267
+ # description, info: str
268
+ Optional('description'): Or(str, type(None)),
269
+ Optional('info'): Or(str, type(None)),
267
270
  # args: array
268
271
  Optional('args'): ARRAY_OR_SPACE_SEPARATED_STRING,
269
272
  # commands: array
@@ -285,7 +288,9 @@ TARGET_CONTENTS = Or(
285
288
  # top: string
286
289
  Optional('top'): str,
287
290
  # deps: array
291
+ # AND/OR files: array
288
292
  Optional('deps'): TARGET_DEPS_CONTENTS,
293
+ Optional('files'): TARGET_DEPS_CONTENTS,
289
294
  # reqs: array
290
295
  Optional('reqs'): ARRAY_OR_SPACE_SEPARATED_STRING,
291
296
  # multi: table
@@ -334,6 +339,8 @@ FILE_SIMPLIFIED = Schema(
334
339
  Optional('METADATA'): dict,
335
340
  Optional(str): Or( # User named target contents
336
341
  {
342
+ Optional('description'): str,
343
+ Optional('info'): str,
337
344
  Optional('args'): [str],
338
345
  Optional('defines'): {
339
346
  Optional(str): Or(type(None), int, str),
@@ -347,6 +354,7 @@ FILE_SIMPLIFIED = Schema(
347
354
  Optional('incdirs'): [str],
348
355
  Optional('top'): str,
349
356
  Optional('deps'): [str],
357
+ Optional('files'): [str],
350
358
  Optional('reqs'): [str],
351
359
  }
352
360
  )
opencos/docs/DEPS.md CHANGED
@@ -9,6 +9,9 @@ METADATA: # <table> unstructured data, any UPPERCASE first level key is not cons
9
9
 
10
10
  target-spec:
11
11
 
12
+ description: # <str> optional description
13
+ info: # <str> optional description
14
+
12
15
  args: # <array or | separated str>
13
16
  - --waves
14
17
  - --sim_plusargs="+info=500"
@@ -56,6 +59,8 @@ target-spec:
56
59
  # to compile order list.
57
60
  - peakrdl: # <string> ## peakrdl command to generate CSRs
58
61
 
62
+ files: # <Identical to "deps", will append to any deps.>
63
+
59
64
  reqs: # <array or | space separated string>
60
65
  - some_file.mem # <string> aka, a non-source file required for this target.
61
66
  # This file is checked for existence prior to invoking the tool involved, for example,
@@ -100,6 +105,7 @@ target-spec:
100
105
  args: <array or | space separated string> # args to be applied if this target is used, with a matching
101
106
  # tool in 'with-tools'.
102
107
  deps: <array or | space separated string, applied with tag>
108
+ files: <identical to deps, will append to deps>
103
109
  defines: <table, applied with tag>
104
110
  plusargs: <table, applied with tag>
105
111
  parameters: <table, applied with tag>
opencos/eda.py CHANGED
@@ -801,6 +801,7 @@ def main(*args):
801
801
  # And show python version:
802
802
  util.info(f'python: version {sys.version_info.major}.{sys.version_info.minor}.'
803
803
  f'{sys.version_info.micro}')
804
+ util.info(f'eda from: {__file__}')
804
805
 
805
806
  # Handle --config-yml= arg
806
807
  config, unparsed = eda_config.get_eda_config(unparsed)
opencos/tools/riviera.py CHANGED
@@ -102,8 +102,10 @@ class CommandSimRiviera(CommonSimQuesta, ToolRiviera):
102
102
  ' tcl steps are (from tool config in --config-yml): '
103
103
  ) + '; '.join(self.tool_config.get('simulate-coverage-tcl', [])),
104
104
  'uvm': (
105
- 'Attempts to support UVM. Adds to vlog: -l uvm +incdir+PATH for the PATH to'
106
- ' uvm_macros.svh for the installed version of Riviera used.'
105
+ 'Attempts to support UVM. For Riviera, this adds "-uvmver NUMBER -dbg" to vlog.f.'
106
+ ' You can choose your uvmver using eda arg --uvm-version=NUMBER.'
107
+ ' Also adds +access +r to vopt/vsim. There is no -l or -L library modifications,'
108
+ ' we rely on Riviera to handle this internally based on running: vlog -uvm'
107
109
  ),
108
110
  'license-queue': (
109
111
  'Set to enable env vars (if unset) LICENSE_QUEUE=1, ALDEC_LICENSE_QUEUE=1,'
opencos/util.py CHANGED
@@ -20,6 +20,7 @@ from importlib import import_module
20
20
  from dotenv import load_dotenv
21
21
  from supports_color import supportsColor
22
22
 
23
+ import opencos
23
24
  from opencos.files import safe_shutil_which
24
25
  from opencos.utils import status_constants
25
26
  from opencos.utils.str_helpers import strip_ansi_color
@@ -359,7 +360,10 @@ def get_argparser() -> argparse.ArgumentParser:
359
360
  # boolean actions:
360
361
  bool_action_kwargs = get_argparse_bool_action_kwargs()
361
362
 
362
- parser.add_argument('--version', default=False, action='store_true')
363
+ parser.add_argument('--version', default=False, action='store_true',
364
+ help=('Shows our version:'
365
+ f' {opencos.__version__} ({opencos.__pyproject_name__})')
366
+ )
363
367
  parser.add_argument('--color', **bool_action_kwargs, default=bool(supportsColor.stdout),
364
368
  help='Use shell colors for info/warning/error messaging')
365
369
  parser.add_argument('--emoji', **bool_action_kwargs, default=args['emoji'],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opencos-eda
3
- Version: 0.3.15
3
+ Version: 0.3.16
4
4
  Summary: A simple Python package for wrapping RTL simuliatons and synthesis
5
5
  Author-email: Simon Sabato <simon@cognichip.ai>, Drew Ranck <drew@cognichip.ai>
6
6
  Project-URL: Homepage, https://github.com/cognichip/opencos
@@ -1,8 +1,8 @@
1
1
  opencos/__init__.py,sha256=RwJA9oc1uUlvNX7v5zoqwjnSRNq2NZwRlHqtS-ICJkI,122
2
2
  opencos/_version.py,sha256=FLlmTepF7P0hC-506fgEvv3NSxGxtWgeR7g2UkNK7PI,618
3
3
  opencos/_waves_pkg.sv,sha256=yWojzRYVIqV2H5xa5e0v34LgK4oLMu3k9_N8EYXy2f0,2852
4
- opencos/deps_schema.py,sha256=wKRMuFzOIapwpCPFGvWGM8Mcwdh9yngHOiDRMmvUaIg,17394
5
- opencos/eda.py,sha256=2vJLMYMW9muWieNaOJz-U5EIVchmVyhTfmEcnZwQtvg,37382
4
+ opencos/deps_schema.py,sha256=1pLF4HLs3f3Hh7SstGolxnG-ODVfvE3DIsfLzmMABqo,17746
5
+ opencos/eda.py,sha256=yNoLrSNh0115vN-6kLMQcu-ZH2TYKoVJ72eLorRvidM,37425
6
6
  opencos/eda_base.py,sha256=-nguHrrYVb8a853HEMfFrOoXlsEEeRnDdFR66nTwX0s,124332
7
7
  opencos/eda_config.py,sha256=EPW0rhnbrpfV9h0OtKrp7By19FcEyDXT2-ud7y4jbRU,17266
8
8
  opencos/eda_config_defaults.yml,sha256=0rq6DNw2U0OjuoZPmYVDgPwu_WoaGUQmaNE3l7sP4wA,21601
@@ -17,7 +17,7 @@ opencos/files.py,sha256=-vHrddbFrwxEHU47VzeyLOU93q8XSXAmPiopClfV-bs,2296
17
17
  opencos/names.py,sha256=Y2aJ5wgpbNIJ-_P5xUXnHMv_h-zMOX2Rt6iLuduqC1Q,1213
18
18
  opencos/peakrdl_cleanup.py,sha256=vHNGtalTrIVP335PhRjPt9RhoccgpK1HJAi-E4M8Kc8,736
19
19
  opencos/seed.py,sha256=IL9Yg-r9SLSRseMVWaEHmuw2_DNi_eyut11EafoNTsU,942
20
- opencos/util.py,sha256=LzMOY5ijcubq3OZSG5zVSALN7-IWuTkeNCvbY7whwq0,44854
20
+ opencos/util.py,sha256=f6lLweNjgHmvvdqoiGrZg8ZJ5uNOjMOqqt0oeY9202E,45034
21
21
  opencos/commands/__init__.py,sha256=oOOQmn5_jHAMSOfA3swJJ7mdoyHsJA0lJwKPTudlTns,1125
22
22
  opencos/commands/build.py,sha256=mvJYxk5J15k0Cr8R7oIdIIdsEtWV3gE-LnPweVwtSDo,1487
23
23
  opencos/commands/deps_help.py,sha256=rWRro9UZCy8FjNgjDdCt5MMrC5KV7Pj6KDsV2xa5fSI,8178
@@ -37,13 +37,13 @@ opencos/commands/targets.py,sha256=_jRNhm2Fqj0fmMvTw6Ba39DCsRHf_r_uZCy_R064kpA,1
37
37
  opencos/commands/upload.py,sha256=OGMI4By0942jL9LK7xBy5_WjvVzRbAr_RB3rS5fNobI,7917
38
38
  opencos/commands/waves.py,sha256=LYF1UcxkHFYYtYoebnh9iE_on80PbbmzIpaSk-XtZcI,9232
39
39
  opencos/deps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- opencos/deps/defaults.py,sha256=Z6mIVJEV0zQ9rC-HkQFMBFAkixjqKS1TATPSc27wOeA,1502
40
+ opencos/deps/defaults.py,sha256=lbzFPlxbGljDkJ3v97QUVJq4dfwRDM_3S0VQxlttamQ,1709
41
41
  opencos/deps/deps_commands.py,sha256=p6jgZXQFu8kJ5M3YqqKZwrdnRC0EAMm-8oqhKvm_gBE,16665
42
- opencos/deps/deps_file.py,sha256=HNZXhg4cXEklTCATboAn1ZO6xfwibwYQBY17dvFJcAw,17078
43
- opencos/deps/deps_processor.py,sha256=fSzVonVuocJDinNGOgs4jizF9yjllSdc11QW7Aj8LzQ,46662
42
+ opencos/deps/deps_file.py,sha256=1hMMj_jz4t2r3X5VXqU2RWxE82IROvbUR213jlmXPPs,17453
43
+ opencos/deps/deps_processor.py,sha256=ynfYbjn5itmDJCboZHqEtZBuWWgRGDAjboNt-JLZb88,48272
44
44
  opencos/docs/Architecture.md,sha256=8zLj19-gzwyHe2ahO7fw6It1pYkpnOtfSD8ciocN_hM,4072
45
45
  opencos/docs/ConnectingApps.md,sha256=xfAJoSa7rx6-aZ8edTugRxKLwZwapR36xjds9CZBYDw,2698
46
- opencos/docs/DEPS.md,sha256=_krXM1seIXDEIDJtz9O9JMGYUvtadYTtjCxLaHCRmns,7803
46
+ opencos/docs/DEPS.md,sha256=6wzBr8RUNXPRbqiJCt_JZreC0S5epGVOzuSrg_lDZp8,8006
47
47
  opencos/docs/Debug.md,sha256=uknfajFhLTXJkkpKJDaxnminilxz1kv6mSYAmdks5B4,4300
48
48
  opencos/docs/DirectoryStructure.md,sha256=HKzzaYwpmzXdHj09vhudiJpEBPM6OPujZrMASItVxVQ,499
49
49
  opencos/docs/Installation.md,sha256=EPdtShrmkL9VzG_bTia7_rVUwD863--QQhgorfc-f28,3529
@@ -68,7 +68,7 @@ opencos/tools/questa.py,sha256=QP0JCt8rWf0-snncNP0_Pi6oRY6_Z9Hwix1IYlRdGEc,2057
68
68
  opencos/tools/questa_common.py,sha256=JYF4MrAcELurcA-t3Hzjb9KKtzHBEEYmXWKWAt8Gi0c,21931
69
69
  opencos/tools/questa_fe.py,sha256=yYNlUnA2pQ8-gELLajnvJgqg6ZXb6F26YRmyvrlNFOA,2155
70
70
  opencos/tools/questa_fse.py,sha256=CjOAn1Ik-3Hd-vyUH_WyTTJxH2yPfhNEfXbedCir7J4,2116
71
- opencos/tools/riviera.py,sha256=SsBOQ-xQQeBr_jPKI50bGzFHXKQeAa7WX3Ql6AC-3wE,19535
71
+ opencos/tools/riviera.py,sha256=IKmVD0hvTTo2JHvvz7r4SN7uQ_UpWpVIF0toZbSqNe8,19736
72
72
  opencos/tools/slang.py,sha256=MxRwu4laSbv7oa3lO-BKg4McL7KAckSA003sL-9sY3U,9682
73
73
  opencos/tools/slang_yosys.py,sha256=z8gUcNSGDl5S6Ufxdx54WWe5v73w0UydErBKFWBR6ZI,10154
74
74
  opencos/tools/surelog.py,sha256=QaXS1EWI2b1TqBoekpXndoHxS6t2e8SD-I2Ryi-gHGs,6666
@@ -84,10 +84,10 @@ opencos/utils/str_helpers.py,sha256=ctl0Zh0h0JW7OlReeSdGxB9wODQYzmMO-9-h55rSRv0,
84
84
  opencos/utils/subprocess_helpers.py,sha256=Wqqs8FKm3XIjmD9GUYM-HWVJH7TxWJJA37A07J4fQ4w,6619
85
85
  opencos/utils/vscode_helper.py,sha256=8epyEeYfXONwiSoc5KZjUfKc8vgLryct8yckJYie88U,1398
86
86
  opencos/utils/vsim_helper.py,sha256=-TJK4Dh8LZ4DCM8GrS9Wka4HE_WMGG_aKwTZtKBrEOE,2994
87
- opencos_eda-0.3.15.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
88
- opencos_eda-0.3.15.dist-info/licenses/LICENSE.spdx,sha256=8gn1610RMP6eFgT3Hm6q9VKXt0RvdTItL_oxMo72jII,189
89
- opencos_eda-0.3.15.dist-info/METADATA,sha256=eMegaTVGReQYdwr58zGGkc8fmhuJywlujQ1wawgA4dA,1165
90
- opencos_eda-0.3.15.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
91
- opencos_eda-0.3.15.dist-info/entry_points.txt,sha256=QOlMZnQeqqwOzIaeKBcY_WlMR3idmOAEbGFh2dXlqJw,290
92
- opencos_eda-0.3.15.dist-info/top_level.txt,sha256=J4JDP-LpRyJqPNeh9bSjx6yrLz2Mk0h6un6YLmtqql4,8
93
- opencos_eda-0.3.15.dist-info/RECORD,,
87
+ opencos_eda-0.3.16.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
88
+ opencos_eda-0.3.16.dist-info/licenses/LICENSE.spdx,sha256=8gn1610RMP6eFgT3Hm6q9VKXt0RvdTItL_oxMo72jII,189
89
+ opencos_eda-0.3.16.dist-info/METADATA,sha256=bpoV7isF82UmnbNteKPaV_UU0nryqDcX34ZoXG5u2Mc,1165
90
+ opencos_eda-0.3.16.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
91
+ opencos_eda-0.3.16.dist-info/entry_points.txt,sha256=QOlMZnQeqqwOzIaeKBcY_WlMR3idmOAEbGFh2dXlqJw,290
92
+ opencos_eda-0.3.16.dist-info/top_level.txt,sha256=J4JDP-LpRyJqPNeh9bSjx6yrLz2Mk0h6un6YLmtqql4,8
93
+ opencos_eda-0.3.16.dist-info/RECORD,,