From f0624b8929e6ead3f2d8b1939dc7f094c539bee1 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 5 Nov 2024 13:39:16 +0100 Subject: Re-work the handling of segments in the assembler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There were a lot of assumptions on the assembler that stemmed from a fundamental missunderstanding from my side on how segments are laid out on the final file. This commit is the first step to address this. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/mapping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xixanta/src/mapping.rs') diff --git a/lib/xixanta/src/mapping.rs b/lib/xixanta/src/mapping.rs index 238f39d..bd2fc2c 100644 --- a/lib/xixanta/src/mapping.rs +++ b/lib/xixanta/src/mapping.rs @@ -51,7 +51,7 @@ pub struct Segment { pub start: u16, pub size: usize, pub offset: usize, - pub fill: Option, + pub fill: Option, pub bundles: Vec, } -- cgit v1.2.3