From 3a79bfdada1b298e49361428400567284603bb33 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sun, 23 May 2021 12:59:59 +0200 Subject: [PATCH] [ElfLoader] also loading .sdata and .sbss sections now --- riscemu/priv/ElfLoader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/priv/ElfLoader.py b/riscemu/priv/ElfLoader.py index 90ca06e..2f3397b 100644 --- a/riscemu/priv/ElfLoader.py +++ b/riscemu/priv/ElfLoader.py @@ -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: