diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-10 12:50:10 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-10 13:00:38 +0100 |
| commit | 343b2a41a36286a5f950116c183cd2ae54aad1bd (patch) | |
| tree | b69120f619c66ba1fe64ce02586e8a84b24b3731 /lib/xixanta/src/assembler.rs | |
| parent | 7882e4474b77dfe4036f170cfce0e40b4f10ae93 (diff) | |
| download | tools.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.rs | 5 |
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 } |
