Skip to content

Commit

Permalink
Merge pull request #3 from Peter-Herrmann/feature/CI
Browse files Browse the repository at this point in the history
bad URL for oss-cad-suite tag
  • Loading branch information
Peter-Herrmann authored Sep 5, 2023
2 parents 2ad587f + dc8cbe7 commit 4b5b81f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Download and Install oss-cad-suite
run: |
wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/<release_tag>/oss-cad-suite-linux-x64-20230905.tgz
wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/2023-09-05/oss-cad-suite-linux-x64-20230905.tgz
tar -xzvf oss-cad-suite-linux-x64-20230905.tgz
echo "oss_cad_suite_dir=$(pwd)/oss-cad-suite" >> $GITHUB_ENV
Expand Down
6 changes: 3 additions & 3 deletions wishbone/wb_to_obi.v
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ module wb_to_obi (
// Read transaction tracker
always @(posedge clk_i) begin
if (wb_rst_i)
read_outstanding <= '0;
read_outstanding <= 'b0;
else begin
if (read_outstanding && (rvalid_i && !read_accepted_a))
read_outstanding <= '0;
read_outstanding <= 'b0;
if (!read_outstanding && read_accepted_a)
read_outstanding <= '0;
read_outstanding <= 'b0;
end
end

Expand Down

0 comments on commit 4b5b81f

Please sign in to comment.