Skip to content

Commit

Permalink
fix style violation and update vsg
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Nov 1, 2020
1 parent e68a51c commit d767bab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vhdl_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
with:
python-version: 3.8
- name: Install dependencies
run: pip install vsg==2.0.0
run: pip install vsg==2.2.0
- name: Run vhdl code style check
run: vsg --configuration vsg_config.yaml
5 changes: 4 additions & 1 deletion code/vhdl/src/max_top.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ library util;

library window_buffer_lib;

-- Maximum pooling can process new data every cycle, i. e. is fully pipelined.
-- Thus, no ready signal is needed

entity max_top is
generic (
C_TOTAL_BITS : integer range 1 to 16 := 8;
Expand Down Expand Up @@ -57,7 +60,7 @@ begin
islv_data => islv_data,
oslv_data => slv_win_data_out,
osl_valid => slv_win_valid_out,
osl_rdy => open -- Maximum pooling can process new data every cycle, i. e. is fully pipelined.
osl_rdy => open
);

a_win_data_out <= slv_to_array(slv_win_data_out, 1, C_KSIZE);
Expand Down

0 comments on commit d767bab

Please sign in to comment.