Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions runt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ cmd = """
fud2 {} -q --to dat -s sim.data={}.data --through firrtl
"""

[[tests]]
name = "Firrtl-With-Primitives Tests"
paths = ["tests/firrtl/*.futil"]
cmd = """
fud2 {} -q --to dat -s sim.data={}.data --through firrtl-with-primitives
"""

##### Frontend Tests #####
[[tests]]
name = "[frontend] dahlia"
Expand Down
2 changes: 1 addition & 1 deletion tools/firrtl/templates/std_slice.fir
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
input in : UInt<IN_WIDTH>
output out : UInt<OUT_WIDTH>

out <= head(in, UInt(DIFF)) ; DIFF should be IN_WIDTH - OUT_WIDTH
out <= tail(in, DIFF) ; DIFF should be IN_WIDTH - OUT_WIDTH
Loading