diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-16 16:29:49 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-16 16:29:49 +0100 |
| commit | 5cea733924c3fd9df91a19c7d7c59ae85915221b (patch) | |
| tree | c8a3dceb6b4673d9299f2dc187625a25ece9195a /lib/xixanta/src/assembler.rs | |
| parent | 1d0bb4d384d391b5603622d813a63cb192e0defb (diff) | |
| download | tools.nes-5cea733924c3fd9df91a19c7d7c59ae85915221b.tar.gz tools.nes-5cea733924c3fd9df91a19c7d7c59ae85915221b.zip | |
Update the README for open sourcing the project
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/assembler.rs')
| -rw-r--r-- | lib/xixanta/src/assembler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xixanta/src/assembler.rs b/lib/xixanta/src/assembler.rs index a155d3b..35f7ada 100644 --- a/lib/xixanta/src/assembler.rs +++ b/lib/xixanta/src/assembler.rs @@ -412,7 +412,7 @@ impl Assembler { fn push_bundle(&mut self, mut bundle: Bundle, node: &PNode) -> Result<(), EvalError> { let current = &mut self.mappings[self.current_mapping]; - bundle.address = current.start as usize + current.offset; // TODO: here + bundle.address = current.start as usize + current.offset; current.offset += bundle.size as usize; current.segments[self.current_segment].offset += bundle.size as usize; |
