From 5e7c0e61a8014535611ff7083e45e7a63d40c6d8 Mon Sep 17 00:00:00 2001 From: ettus Date: Wed, 2 Sep 2020 11:26:42 -0500 Subject: rfnoc: replay: Add support for 32-bit memory address widths Increases the supported memory sizes in software to 2^32 and beyond. Signed-off-by: mattprost --- host/tests/rfnoc_block_tests/replay_block_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/tests') diff --git a/host/tests/rfnoc_block_tests/replay_block_test.cpp b/host/tests/rfnoc_block_tests/replay_block_test.cpp index 4e4e7847d..f84b98ac8 100644 --- a/host/tests/rfnoc_block_tests/replay_block_test.cpp +++ b/host/tests/rfnoc_block_tests/replay_block_test.cpp @@ -73,8 +73,8 @@ struct replay_block_fixture : num_channels(4) , num_input_ports(num_channels) , num_output_ports(num_channels) - , mem_addr_size(20) - , max_buffer_size(1 << mem_addr_size) + , mem_addr_size(32) + , max_buffer_size(1ULL << mem_addr_size) , default_item_size(4) , word_size(8) , reg_iface(std::make_shared( -- cgit v1.2.3