Skip to content

Commit

Permalink
Fix vsplit BlackBox
Browse files Browse the repository at this point in the history
thanks to Иван Алёхин
  • Loading branch information
christiaanb committed May 5, 2014
1 parent 8aba906 commit 436bfce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/clash.sized.vector.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ end block;"
signal ~SYM[1] : ~TYP[1];
begin
~SYM[1] <= ~ARG[1];
~RESULT <= (~SYM[1](~SYM[1]'high downto ~LIT[0]),~SYM[1](~LIT[0]-1 downto 0));
~RESULT <= (~SYM[1](~SYM[1]'high downto (~SYM[1]'high - ~LIT[0] + 1)),~SYM[1]((~SYM[1]'high - ~LIT[0]) downto 0));
end block;"
}
}
Expand Down

0 comments on commit 436bfce

Please sign in to comment.