5 releases (3 breaking)
0.4.0 | Aug 26, 2020 |
---|---|
0.3.1 | Mar 17, 2019 |
0.3.0 | Mar 12, 2019 |
0.2.0 | Jan 13, 2019 |
0.1.0 | Jan 5, 2019 |
#8 in #llhd
110KB
2.5K
SLoC
llhd-sim
Moved: llhd-sim is now part of the llhd repository and crate. This repository will no longer be updated.
This is the reference simulator for llhd, striving to be complete but as minimal as possible. Its goal is to serve as a starting point for developing more sophisticated simulators for hardware written in llhd. As a secondary goal it acts as an application example of llhd.
Usage
Installation
You need a working Rust installation. Use cargo to install llhd-sim:
cargo install llhd-sim
Example
Given the following input file:
// foo.llhd
proc @foo () (i32$ %out) {
%entry:
drv %out 0 1ns
drv %out 42 2ns
%0 = add i32 9000 1
drv %out %0 3ns
halt
}
Use llhd-sim to simulate the described hardware and produce a VCD file:
llhd-sim foo.llhd
gtkwave /tmp/output.vcd
Dependencies
~8–17MB
~233K SLoC