From 8b4ba276a817401e04a5a9b2e9df5d5bdfb973a9 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sun, 18 Apr 2021 19:29:51 +0200 Subject: [PATCH] fixed saving reference to global_symbol_table in executable loader --- riscemu/Executable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/Executable.py b/riscemu/Executable.py index 4c9ff78..d09206f 100644 --- a/riscemu/Executable.py +++ b/riscemu/Executable.py @@ -257,7 +257,7 @@ class LoadedExecutable: self.sections_by_name = dict() self.symbols = dict() self.exported_symbols = dict() - self.global_symbol_table = dict() + self.global_symbol_table = global_symbol_table curr = base_addr for sec in exe.sections.values():