2026.05 and AXI4Memory
Problem and Solution In 2026.05, AXI4 Memory is now AXI word width where previously it was byte width. This impacts indirect accesses to the memory using NewID. Use case for older releases (2026.01 and before): vMemID := NewID( Name => MEMORY_NAME, AddrWidth => AXI_ADDR_WIDTH, DataWidth => 8, ParentID => ParentID, Search => NAME ) ; With 2026.05, the call to NewID needs to be updated as follows: v... »