[ElfLoader] also loading .sdata and .sbss sections now

This commit is contained in:
Anton Lydike 2021-05-23 12:59:59 +02:00
parent 3f11cd84ca
commit 3a79bfdada

View File

@ -18,7 +18,7 @@ from ..decoder import decode
# This requires pyelftools package!
INCLUDE_SEC = ('.text', '.stack', '.bss')
INCLUDE_SEC = ('.text', '.stack', '.bss', '.sdata', '.sbss')
class ElfExecutable: