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/lib/rfnoc/replay_block_control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib') diff --git a/host/lib/rfnoc/replay_block_control.cpp b/host/lib/rfnoc/replay_block_control.cpp index 6067650e0..a2b45f575 100644 --- a/host/lib/rfnoc/replay_block_control.cpp +++ b/host/lib/rfnoc/replay_block_control.cpp @@ -77,7 +77,7 @@ public: _fpga_compat(_replay_reg_iface.peek32(REG_COMPAT_ADDR)), _word_size( uint16_t((_replay_reg_iface.peek32(REG_MEM_SIZE_ADDR) >> 16) & 0xFFFF) / 8), - _mem_size(uint64_t(1 << (_replay_reg_iface.peek32(REG_MEM_SIZE_ADDR) & 0xFFFF))) + _mem_size(uint64_t(1ULL << (_replay_reg_iface.peek32(REG_MEM_SIZE_ADDR) & 0xFFFF))) { UHD_ASSERT_THROW(get_num_input_ports() == get_num_output_ports()); uhd::assert_fpga_compat(MAJOR_COMPAT, -- cgit v1.2.3