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.