diff options
| author | taitep <taitep@taitep.se> | 2025-12-26 19:32:55 +0100 |
|---|---|---|
| committer | taitep <taitep@taitep.se> | 2025-12-26 19:32:55 +0100 |
| commit | a64fcaa3b557d3e7f611f3997a0b4c6990347d9b (patch) | |
| tree | bcf21fa7cd6261b026ba883264d09e298a7469eb /src/main.rs | |
| parent | 34034dd5db07f71b0854de0f2bbb18e39aa3db69 (diff) | |
Make execload respect the static ram start
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |
