We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e038c0 commit 60a4d6cCopy full SHA for 60a4d6c
veriloggen/simulation/simulation.py
@@ -68,8 +68,8 @@ def finish():
68
class Simulator(object):
69
70
def __init__(self, *objs, **options):
71
- sim = 'iverilog' if 'sim' not in options else options['sim']
72
- wave = 'gtkwave' if 'wave' not in options else options['wave']
+ sim = 'iverilog' if 'sim' not in options else options['sim'].lower()
+ wave = 'gtkwave' if 'wave' not in options else options['wave'].lower()
73
files = None if 'files' not in options else options['files']
74
top = 'test' if 'top' not in options else options['top']
75
self._type_check_sim(sim)
0 commit comments