From: Jean-Paul Mari Date: Wed, 18 Oct 2017 18:00:53 +0000 (-0400) Subject: Improved the .heap section detection to avoid a detection error X-Git-Tag: v2.1.3-R3~7 X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/commitdiff_plain/88b2434e65cb92d1a3fc04f8f05f9e3e41628a06 Improved the .heap section detection to avoid a detection error --- 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;