Skip to content

Commit

Permalink
verilator 3.833
Browse files Browse the repository at this point in the history
Verilator is the fastest free Verilog HDL simulator, and beats most commercial
simulators. It compiles synthesizable Verilog (not test-bench code!), plus
some PSL, SystemVerilog and Synthesis assertions into C++ or SystemC code. It
is designed for large projects where fast simulation performance is of primary
concern, and is especially well suited to generate executable models of CPUs
for embedded software design teams.

Closes Homebrew#12798.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
Saku Rantamäki authored and adamv committed Jul 23, 2012
1 parent c018b59 commit cff654a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions verilator.rb
@@ -0,0 +1,15 @@
require 'formula'

class Verilator < Formula
homepage 'http://www.veripool.org/wiki/verilator'
url 'http://www.veripool.org/ftp/verilator-3.833.tgz'
sha1 '4ca58d609371b0a6309c5564a5e8ba6857aa15db'

skip_clean 'bin' # Allows perl scripts to keep their executable flag

def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end

0 comments on commit cff654a

Please sign in to comment.