aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src/assembler.rs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-10 12:50:10 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-10 13:00:38 +0100
commit343b2a41a36286a5f950116c183cd2ae54aad1bd (patch)
treeb69120f619c66ba1fe64ce02586e8a84b24b3731 /lib/xixanta/src/assembler.rs
parent7882e4474b77dfe4036f170cfce0e40b4f10ae93 (diff)
downloadtools.nes-343b2a41a36286a5f950116c183cd2ae54aad1bd.tar.gz
tools.nes-343b2a41a36286a5f950116c183cd2ae54aad1bd.zip
Improve the message on bad file includes
Also remove some pending TODOs. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/assembler.rs')
-rw-r--r--lib/xixanta/src/assembler.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/xixanta/src/assembler.rs b/lib/xixanta/src/assembler.rs
index 06f0b24..7f46384 100644
--- a/lib/xixanta/src/assembler.rs
+++ b/lib/xixanta/src/assembler.rs
@@ -78,7 +78,8 @@ pub struct Assembler<'a> {
// Warnings that have accumulated over the run.
warnings: Vec<Error>,
- // TODO
+ // Sources that have been evaluated for the current session. This is
+ // directly tied to `Parser::sources`.
sources: Vec<SourceInfo>,
}
@@ -3802,6 +3803,4 @@ lda #Variable
".segment must be on the global scope",
);
}
-
- // TODO: jmp/beq outside of allocated PRG ROM
}