Skip to content

Commit 60a4d6c

Browse files
committed
lower case
1 parent 7e038c0 commit 60a4d6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

veriloggen/simulation/simulation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def finish():
6868
class Simulator(object):
6969

7070
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']
71+
sim = 'iverilog' if 'sim' not in options else options['sim'].lower()
72+
wave = 'gtkwave' if 'wave' not in options else options['wave'].lower()
7373
files = None if 'files' not in options else options['files']
7474
top = 'test' if 'top' not in options else options['top']
7575
self._type_check_sim(sim)

0 commit comments

Comments
 (0)