Skip to content

Commit

Permalink
Mark pipelined_mult inputs as @data (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewb1999 authored Apr 22, 2024
1 parent 26b2400 commit f2d3fc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions primitives/pipelined.futil
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ extern "pipelined.sv" {
// A latency-sensitive multiplier that takes 4 cycles to compute its result.
static<4> primitive pipelined_mult[WIDTH] (
@clk clk: 1,
left: WIDTH,
right: WIDTH
@data left: WIDTH,
@data right: WIDTH
) -> (
out: WIDTH
);
Expand All @@ -14,8 +14,8 @@ extern "pipelined.sv" {
] (
@clk clk: 1,
@reset reset: 1,
left: WIDTH,
right: WIDTH
@data left: WIDTH,
@data right: WIDTH
) -> (
out: WIDTH
);
Expand Down

0 comments on commit f2d3fc6

Please sign in to comment.