From a64fcaa3b557d3e7f611f3997a0b4c6990347d9b Mon Sep 17 00:00:00 2001 From: taitep Date: Fri, 26 Dec 2025 19:32:55 +0100 Subject: Make execload respect the static ram start --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index b3393d3..03072f6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,7 +30,7 @@ fn main() -> Result<()> { bail!("Wrong number of arguments"); } - let entry_point = execload::load(&args[1], buf, 0x8000_0000)?; + let entry_point = execload::load(&args[1], buf)?; let mut mmio_root = MmioRoot::default(); mmio_root.insert(0, Arc::new(DbgOut)); -- cgit v1.2.3