From 88b2434e65cb92d1a3fc04f8f05f9e3e41628a06 Mon Sep 17 00:00:00 2001 From: Jean-Paul Mari Date: Wed, 18 Oct 2017 14:00:53 -0400 Subject: [PATCH] Improved the .heap section detection to avoid a detection error --- docs/vj_ReleaseNotes.txt | 2 ++ src/file.cpp | 3 +++ 2 files changed, 5 insertions(+) diff --git a/docs/vj_ReleaseNotes.txt b/docs/vj_ReleaseNotes.txt index 0eaa385..3f1f325 100644 --- a/docs/vj_ReleaseNotes.txt +++ b/docs/vj_ReleaseNotes.txt @@ -20,6 +20,8 @@ Release 3 (WiP) -- UI displays the source without the need to move down/up the scrollbar 14) Fixed a crash when DWARF report a source line number exceeding the number of lines present in the source file -- This may come from the linker vlink +15) Improved the .heap section detection to avoid a detection error +-- Depend vlink version, .heap section may have an Alloc flag Release 2 (3rd September 2017) ------------------------------ diff --git a/src/file.cpp b/src/file.cpp index 001b132..c1cf88a 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -263,6 +263,9 @@ WriteLog("FILE: Cartridge run address is reported as $%X...\n", jaguarRunAddress case ELF_debug_loc_TYPE: break; + case ELF_heap_TYPE: + break; + case ELF_comment_TYPE: break; -- 2.20.1