index
:
tools.nes
main
Tools for NES/Famicom development.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
xixanta
/
src
/
assembler.rs
Commit message (
Expand
)
Author
Age
Files
Lines
*
assembler: Preserve the original working directory
Miquel Sabaté Solà
2025-09-02
1
-0
/
+10
*
assembler: Add support for asan:reserve,ignore
Miquel Sabaté Solà
2025-09-02
1
-12
/
+213
*
nasm: Error out when using WRAM when not available
Miquel Sabaté Solà
2025-08-28
1
-0
/
+26
*
xixanta: Be more mindful on what's being exported
Miquel Sabaté Solà
2025-08-27
1
-6
/
+21
*
nasm: Implement the -s/--stats option
Miquel Sabaté Solà
2025-08-27
1
-0
/
+9
*
Don't get into all blocks when evaluating the context
Miquel Sabaté Solà
2025-08-18
1
-4
/
+51
*
Provide a node to the Object struct
Miquel Sabaté Solà
2025-08-18
1
-1
/
+59
*
Reset literal mode before left arm of an operation
Miquel Sabaté Solà
2025-08-18
1
-0
/
+5
*
Fix shift overflow on certain expressions
Miquel Sabaté Solà
2025-08-18
1
-2
/
+2
*
Use a buffered reader for incbin
Miquel Sabaté Solà
2025-08-17
1
-2
/
+3
*
Apply suggested style fixes from clippy
Miquel Sabaté Solà
2025-08-17
1
-25
/
+17
*
Implement echo control statements
Miquel Sabaté Solà
2025-01-22
1
-1
/
+30
*
nasm: Implement the -D flag
Miquel Sabaté Solà
2025-01-22
1
-4
/
+64
*
Introduce looking ahead when parsing literals
Miquel Sabaté Solà
2025-01-21
1
-1
/
+1
*
Whitelist valid identifier characters
Miquel Sabaté Solà
2025-01-16
1
-5
/
+14
*
Permit 16-bit decimal values
Miquel Sabaté Solà
2025-01-16
1
-9
/
+18
*
Implement .ifdef/.ifndef statements
Miquel Sabaté Solà
2025-01-16
1
-0
/
+49
*
Implement .def/.defined expressions
Miquel Sabaté Solà
2025-01-16
1
-0
/
+53
*
Implement .if/.elsif/.else statements
Miquel Sabaté Solà
2025-01-16
1
-11
/
+133
*
Add boolean operators
Miquel Sabaté Solà
2025-01-16
1
-7
/
+60
*
Move check for ASCII-only strings into the parser
Miquel Sabaté Solà
2025-01-15
1
-9
/
+2
*
Implement .asciiz control statement
Miquel Sabaté Solà
2025-01-14
1
-10
/
+69
*
Implement the .res control statement
Miquel Sabaté Solà
2025-01-14
1
-0
/
+97
*
tests: Update code.nes so -Werror can be passed
Miquel Sabaté Solà
2025-01-13
1
-20
/
+2
*
Improve the message on bad file includes
Miquel Sabaté Solà
2025-01-10
1
-3
/
+2
*
Properly fill the context stack when forcing it
Miquel Sabaté Solà
2025-01-10
1
-2
/
+48
*
Improve error message on unknown variable/scope
Miquel Sabaté Solà
2025-01-09
1
-10
/
+8
*
Prevent assignments on relative references
Miquel Sabaté Solà
2025-01-09
1
-1
/
+17
*
Reset the literal mode on each macro argument
Miquel Sabaté Solà
2025-01-09
1
-0
/
+20
*
Evaluate bare numbers as decimal values
Miquel Sabaté Solà
2025-01-09
1
-6
/
+11
*
Rename SourceInfo::working_directory to directory
Miquel Sabaté Solà
2025-01-09
1
-2
/
+2
*
Merge all error types into a single one
Miquel Sabaté Solà
2025-01-09
1
-132
/
+134
*
Remove ContextErrorReason as it was unused
Miquel Sabaté Solà
2025-01-09
1
-10
/
+1
*
Implement the .include statement
Miquel Sabaté Solà
2025-01-09
1
-81
/
+228
*
Reset the literal mode on assignments
Miquel Sabaté Solà
2025-01-08
1
-0
/
+15
*
Try absolute addressing on bad zeropage addressing
Miquel Sabaté Solà
2025-01-08
1
-0
/
+31
*
Add the .repeat control statement
Miquel Sabaté Solà
2025-01-07
1
-28
/
+232
*
Store a reference for macros instead of an index
Miquel Sabaté Solà
2025-01-07
1
-862
/
+689
*
Implement block bodies inside of the assembler
Miquel Sabaté Solà
2025-01-05
1
-167
/
+180
*
parser: Implement block bodies
Miquel Sabaté Solà
2025-01-04
1
-2
/
+4
*
Add a test on jumps and labels inside of procs
Miquel Sabaté Solà
2024-12-24
1
-2
/
+61
*
Fix usage of labels inside of macros
Miquel Sabaté Solà
2024-12-24
1
-35
/
+72
*
Forbid creating named labels inside of macros
Miquel Sabaté Solà
2024-12-24
1
-0
/
+37
*
Prevent missplaced start for procs and scopes
Miquel Sabaté Solà
2024-12-23
1
-4
/
+85
*
Prevent early .end statements
Miquel Sabaté Solà
2024-12-23
1
-3
/
+98
*
Make more explicit segment/macros are only global
Miquel Sabaté Solà
2024-12-23
1
-21
/
+40
*
Transform mapping configurations into toml files
Miquel Sabaté Solà
2024-12-22
1
-28
/
+30
*
Prevent a division by zero
Miquel Sabaté Solà
2024-12-20
1
-0
/
+51
*
Only shrink the addressing on resolved bundles
Miquel Sabaté Solà
2024-12-20
1
-3
/
+35
*
Shrink some absolute instructions by one byte
Miquel Sabaté Solà
2024-12-20
1
-5
/
+27
[next]