~shiny/gbcap

255dccd6aa2624748bf9b78204989a6e06458f7c — Thomas Spurden 3 years ago 2a91695
Quieten verilator a little

All the verilog is generated by migen...
1 files changed, 1 insertions(+), 1 deletions(-)

M utils.py
M utils.py => utils.py +1 -1
@@ 13,7 13,7 @@ def update_verilog_if_changed(path, cvt):
            f.write(cvt.main_source)

def verilate(files, output=None):
    cmd = ['verilator', '-Wno-fatal', '-cc', '-CFLAGS', '-ggdb', '--trace', '--exe', '--build']
    cmd = ['verilator', '-Wno-COMBDLY', '-Wno-fatal', '-cc', '-CFLAGS', '-ggdb', '--trace', '--exe', '--build']
    if output is not None:
        cmd += ['-o', output]
    cmd += files