# SPDX-License-Identifier: CC0-1.0 language = 'Verilog' display = 'Verilog 2012 (Icarus Verilog 12.0)' license = [{ name = 'GPL-2.0', url = 'https://github.com/steveicarus/iverilog/blob/4fd5291632232fbe1ba49b2c26bb6b2bf1c6c9cf/COPYING' }] filename = 'Main.v' install = ''' sudo apt update sudo apt install -y iverilog=12.0-2build2 ''' compile = ''' iverilog -g2012 -DONLINE_JUDGE -DATCODER Main.v ''' object = 'a.out' execution = ['vvp', '-n', 'a.out']