Skip to content
Snippets Groups Projects
Commit 13647ff0 authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Fixed BG off-by-one error: mem_high_address was 126 instead of 127!

parent a4526bb8
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ ARCHITECTURE str OF apertif_unb1_fn_bf_emu IS ...@@ -136,7 +136,7 @@ ARCHITECTURE str OF apertif_unb1_fn_bf_emu IS
TO_UVEC(c_bg_blocks_per_sync, c_diag_bg_blocks_per_sync_w), TO_UVEC(c_bg_blocks_per_sync, c_diag_bg_blocks_per_sync_w),
TO_UVEC( c_bg_gapsize, c_diag_bg_gapsize_w), TO_UVEC( c_bg_gapsize, c_diag_bg_gapsize_w),
TO_UVEC( 0, c_diag_bg_mem_low_adrs_w), TO_UVEC( 0, c_diag_bg_mem_low_adrs_w),
TO_UVEC(c_bg_mem_high_addr-1, c_diag_bg_mem_high_adrs_w), TO_UVEC( c_bg_mem_high_addr, c_diag_bg_mem_high_adrs_w),
TO_UVEC( 0, c_diag_bg_bsn_init_w)); TO_UVEC( 0, c_diag_bg_bsn_init_w));
-- Interface: 10GbE -- Interface: 10GbE
CONSTANT c_nof_10GbE_offload_streams : NATURAL := 1; CONSTANT c_nof_10GbE_offload_streams : NATURAL := 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment