From 840ee68bd7d4580da65ae24013b30f0d33da1da0 Mon Sep 17 00:00:00 2001 From: Antonio QUARTA Date: Fri, 23 May 2025 13:08:15 +0200 Subject: [PATCH] fix LoadELF call --- src/pyrenode3/wrappers/machine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyrenode3/wrappers/machine.py b/src/pyrenode3/wrappers/machine.py index a6d5107..e658f56 100644 --- a/src/pyrenode3/wrappers/machine.py +++ b/src/pyrenode3/wrappers/machine.py @@ -40,7 +40,7 @@ def load_elf(self, location: str) -> None: location : str path or url to ELF file. """ - FileLoaderExtensions.LoadELF(self.sysbus.internal, RPath(location).read_file_path) + self.sysbus.internal.LoadELF(RPath(location).read_file_path) def load_binary(self, location: str, load_point: int) -> None: """Load binary from URL or local filesystem.