Skip to content
Snippets Groups Projects
Commit 3873325a authored by auphelia's avatar auphelia
Browse files

[AlveoBuild] Set axilite address range to a minimum of 4K

parent a3b6a7fb
No related branches found
No related tags found
No related merge requests found
......@@ -536,6 +536,7 @@ foreach port [get_bd_intf_ports -filter {CONFIG.PROTOCOL==AXI4LITE}] {
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]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment