Make execload respect the static ram start

This commit is contained in:
2025-12-26 19:32:55 +01:00
parent 34034dd5db
commit a64fcaa3b5
2 changed files with 6 additions and 6 deletions

View File

@@ -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));