Skip to content

Commit

Permalink
remove unnecessary integer constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Mar 27, 2021
1 parent e4008b2 commit 0d3287a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/window_ctrl/channel_repeater.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ library util;

entity channel_repeater is
generic (
C_BITWIDTH : integer range 1 to 32 := 8;
C_BITWIDTH : integer := 8;

C_CH : integer range 1 to 512 := 16;
C_REPEAT : integer range 1 to 512 := 32;
Expand Down
2 changes: 1 addition & 1 deletion src/window_ctrl/line_buffer.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ library util;

entity line_buffer is
generic (
C_BITWIDTH : integer range 1 to 64 := 8;
C_BITWIDTH : integer := 8;

C_CH : integer range 1 to 1024 := 16;
C_IMG_WIDTH : integer range 1 to 2048 := 20;
Expand Down
2 changes: 1 addition & 1 deletion src/window_ctrl/window_buffer.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ library util;

entity window_buffer is
generic (
C_BITWIDTH : integer range 1 to 16 := 8;
C_BITWIDTH : integer := 8;

C_CH : integer range 1 to 512 := 4;

Expand Down

0 comments on commit 0d3287a

Please sign in to comment.