Skip to content

Commit

Permalink
Fix to mem
Browse files Browse the repository at this point in the history
  • Loading branch information
dgastler committed Jul 16, 2020
1 parent 9a066d0 commit 543ef71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ clean_bd:
@rm -rf ./bd/c2cSlave
clean_bit:
@echo "Cleaning up bit files"
@rm -rf $(BIT)
@rm -rf bit/*
clean_os:
@echo "Clean OS hw files"
@rm -f os/hw/*
Expand Down
2 changes: 1 addition & 1 deletion regmap_helper
5 changes: 3 additions & 2 deletions src/top.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,9 @@ begin -- architecture structure
bram_clk_a => bram_clk_a,
bram_en_a => bram_en_a,
bram_we_a => bram_we_a,
bram_addr_a(31 downto 10) => open,
bram_addr_a( 9 downto 0) => bram_addr_a,
bram_addr_a(31 downto 12) => open,
bram_addr_a(11 downto 2) => bram_addr_a,
bram_addr_a( 1 downto 0) => open,
bram_wrdata_a => bram_wrdata_a,
bram_rddata_a => bram_rddata_a);

Expand Down

0 comments on commit 543ef71

Please sign in to comment.