diff options
| author | Ian McIntyre <me@mciantyre.dev> | 2025-11-09 10:26:03 -0500 |
|---|---|---|
| committer | Ian McIntyre <me@mciantyre.dev> | 2025-11-10 09:54:18 -0500 |
| commit | 74d463340a87ff38a96c03a380bbed7c3ee56ba4 (patch) | |
| tree | c25bf1d3ae62b77e7d058e2909b4702f511c5c29 /src/host.rs | |
| parent | 439036a6f49663e99779b7c88209999e2b34d28f (diff) | |
Hexify family ID in linker script
Missed in the previous hexification commit.
Diffstat (limited to 'src/host.rs')
| -rw-r--r-- | src/host.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host.rs b/src/host.rs index 18b9b62..6a01f9d 100644 --- a/src/host.rs +++ b/src/host.rs @@ -624,7 +624,7 @@ impl RuntimeBuilder { )?; // The target runtime looks at this value to predicate some pre-init instructions. // Could be helpful for binary identification, but it's an undocumented feature. - writeln!(writer, "__imxrt_rt_v0.2 = {};", self.family.id(),)?; + writeln!(writer, "__imxrt_rt_v0.2 = {:#010X};", self.family.id(),)?; let link_x = include_bytes!("host/imxrt-link.x"); writer.write_all(link_x)?; |
