aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-16 16:29:49 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-16 16:29:49 +0100
commit5cea733924c3fd9df91a19c7d7c59ae85915221b (patch)
treec8a3dceb6b4673d9299f2dc187625a25ece9195a /lib/xixanta
parent1d0bb4d384d391b5603622d813a63cb192e0defb (diff)
downloadtools.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')
-rw-r--r--lib/xixanta/src/assembler.rs2
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;