From a551e59f47dca8aabab2e01094fef1a2d9b85ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Sintzoff?= <61976467+ASintzoff@users.noreply.github.com> Date: Tue, 5 Oct 2021 19:43:40 +0200 Subject: [PATCH] ariane_tb.cpp: fix memory loading size (#749) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Sintzoff Co-authored-by: Jean-Roch Coulon --- corev_apu/tb/ariane_tb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corev_apu/tb/ariane_tb.cpp b/corev_apu/tb/ariane_tb.cpp index 0b6651742..30fca42f5 100644 --- a/corev_apu/tb/ariane_tb.cpp +++ b/corev_apu/tb/ariane_tb.cpp @@ -319,7 +319,7 @@ done_processing: top->rst_ni = 1; // Preload memory. - size_t mem_size = 0x100000; + size_t mem_size = 0xFFFFFF; memif.read(0x80000000, mem_size, (void *)top->ariane_testharness__DOT__i_sram__DOT__gen_cut__BRA__0__KET____DOT__gen_mem__DOT__i_ram__DOT__Mem_DP); #ifndef DROMAJO