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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Remove dependency to the rand crate
Miquel Sabaté Solà
2025-01-22
3
-94
/
+10
*
Be more explicit on empty identifiers
Miquel Sabaté Solà
2025-01-21
1
-6
/
+3
*
Allow dot characters on identifiers
Miquel Sabaté Solà
2025-01-21
1
-19
/
+67
*
Introduce looking ahead when parsing literals
Miquel Sabaté Solà
2025-01-21
2
-193
/
+296
*
Track the level of recursive calls
Miquel Sabaté Solà
2025-01-20
1
-18
/
+35
*
Whitelist valid identifier characters
Miquel Sabaté Solà
2025-01-16
2
-8
/
+27
*
Permit 16-bit decimal values
Miquel Sabaté Solà
2025-01-16
1
-9
/
+18
*
Implement .ifdef/.ifndef statements
Miquel Sabaté Solà
2025-01-16
4
-4
/
+78
*
Implement .def/.defined expressions
Miquel Sabaté Solà
2025-01-16
3
-0
/
+57
*
Implement .if/.elsif/.else statements
Miquel Sabaté Solà
2025-01-16
4
-43
/
+258
*
Add boolean operators
Miquel Sabaté Solà
2025-01-16
3
-11
/
+100
*
Fix error with strings containing equal operator
Miquel Sabaté Solà
2025-01-15
1
-10
/
+7
*
Allow semicolons inside of strings
Miquel Sabaté Solà
2025-01-15
1
-9
/
+43
*
Simplify string arguments for control statements
Miquel Sabaté Solà
2025-01-15
2
-28
/
+51
*
Disambiguate unary/binary operators
Miquel Sabaté Solà
2025-01-15
1
-1
/
+8
*
Move check for ASCII-only strings into the parser
Miquel Sabaté Solà
2025-01-15
2
-9
/
+6
*
Split 'parse_expression' into more functions
Miquel Sabaté Solà
2025-01-15
1
-70
/
+86
*
Parse a string literal as a single object
Miquel Sabaté Solà
2025-01-15
1
-0
/
+47
*
Add .byt as a synonym for .byte
Miquel Sabaté Solà
2025-01-14
1
-0
/
+1
*
Implement .asciiz control statement
Miquel Sabaté Solà
2025-01-14
3
-10
/
+72
*
Implement the .res control statement
Miquel Sabaté Solà
2025-01-14
3
-0
/
+100
*
tests: Update code.nes so -Werror can be passed
Miquel Sabaté Solà
2025-01-13
1
-20
/
+2
*
Add support for cfg files
Miquel Sabaté Solà
2025-01-13
3
-3
/
+559
*
Improve the message on bad file includes
Miquel Sabaté Solà
2025-01-10
2
-17
/
+8
*
Properly fill the context stack when forcing it
Miquel Sabaté Solà
2025-01-10
2
-16
/
+67
*
Improve error message on unknown variable/scope
Miquel Sabaté Solà
2025-01-09
2
-11
/
+9
*
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
3
-8
/
+11
*
Merge all error types into a single one
Miquel Sabaté Solà
2025-01-09
4
-318
/
+234
*
Remove ContextErrorReason as it was unused
Miquel Sabaté Solà
2025-01-09
2
-23
/
+1
*
Implement the .include statement
Miquel Sabaté Solà
2025-01-09
10
-286
/
+660
*
Restrict literal characters further
Miquel Sabaté Solà
2025-01-09
1
-2
/
+25
*
Prevent numeric literals from having spaces
Miquel Sabaté Solà
2025-01-09
1
-4
/
+25
*
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
7
-56
/
+472
*
Store a reference for macros instead of an index
Miquel Sabaté Solà
2025-01-07
3
-868
/
+696
*
parser: Move out the parsing of control statements
Miquel Sabaté Solà
2025-01-05
1
-50
/
+63
*
Implement block bodies inside of the assembler
Miquel Sabaté Solà
2025-01-05
4
-194
/
+214
*
parser: Implement block bodies
Miquel Sabaté Solà
2025-01-04
3
-109
/
+321
*
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
2
-35
/
+84
*
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
2
-4
/
+86
*
Prevent early .end statements
Miquel Sabaté Solà
2024-12-23
2
-3
/
+99
*
Make more explicit segment/macros are only global
Miquel Sabaté Solà
2024-12-23
2
-22
/
+69
*
nasm: Allow file paths for the configuration
Miquel Sabaté Solà
2024-12-22
1
-9
/
+17
*
Transform mapping configurations into toml files
Miquel Sabaté Solà
2024-12-22
9
-377
/
+489
[prev]
[next]