Skip to content

Commit

Permalink
[AlveoBuild] Set axilite address range to a minimum of 4K
Browse files Browse the repository at this point in the history
  • Loading branch information
auphelia committed Jul 11, 2023
1 parent a3b6a7f commit 3873325
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/finn/transformation/fpgadataflow/create_stitched_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ def apply(self, model):
puts "CRITICAL WARNING: Unable to construct address map for $port."
} {
set range [expr 2**$awidth]
set range [expr $range < 4096 ? 4096 : $range]
puts "INFO: Building address map for $port: 0+:$range"
set name [get_property NAME $port]
set addr_block [ipx::add_address_block Reg0 [ipx::add_memory_map $name $core]]
Expand Down

0 comments on commit 3873325

Please sign in to comment.