index
:
tools.nes
main
Tools for NES/Famicom development.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add a new 'check' stage in assemble()
Miquel Sabaté Solà
2026-04-30
2
-108
/
+108
*
Send an error for unused .proc's
Miquel Sabaté Solà
2026-04-28
2
-42
/
+104
*
nasm: add the --split-segments option
Miquel Sabaté Solà
2026-04-28
1
-1
/
+10
*
Add the context's name into memory ranges
Miquel Sabaté Solà
2026-04-25
2
-4
/
+8
*
Add the .min and the .max control expressions
Miquel Sabaté Solà
2026-04-24
3
-0
/
+91
*
Allow scoped names in __fallthrough__
Miquel Sabaté Solà
2026-04-24
1
-1
/
+1
*
Add a big endian control statement
Miquel Sabaté Solà
2026-04-24
3
-5
/
+73
*
Add the .version pseudo-variable
Miquel Sabaté Solà
2026-04-24
3
-0
/
+45
*
Update the code style to the latest stable Rust
Miquel Sabaté Solà
2026-04-24
3
-21
/
+14
*
Fix outdated comment on __fallthrough__
Miquel Sabaté Solà
2026-04-24
1
-4
/
+4
*
Fix calls with arguments containing addresses
Miquel Sabaté Solà
2026-04-24
1
-1
/
+46
*
Ensure expressions in arguments are fully parsed
Miquel Sabaté Solà
2026-04-23
2
-0
/
+33
*
Implement the asan:stack statement
Miquel Sabaté Solà
2026-04-08
3
-7
/
+328
*
Re-create the values for bundle call arguments
Miquel Sabaté Solà
2026-03-10
1
-4
/
+38
*
Ignore GLOBAL_CONTEXT on force_context_switch()
Miquel Sabaté Solà
2026-03-09
1
-0
/
+6
*
asan: ignore names from macro arguments
Miquel Sabaté Solà
2026-03-09
2
-5
/
+6
*
Define the global scope to a more obscure name
Miquel Sabaté Solà
2026-02-25
1
-1
/
+1
*
Fix small indentation typo
Miquel Sabaté Solà
2026-02-25
1
-1
/
+1
*
Raise an error when a control statement does not exist
Miquel Sabaté Solà
2026-02-25
1
-11
/
+10
*
Allow using a byte for indirect jumps
Miquel Sabaté Solà
2026-02-11
1
-11
/
+12
*
asan: Fix validation on indirect jumps
Miquel Sabaté Solà
2026-02-11
1
-3
/
+1
*
asan: don't complain on arithmetic with addresses
Miquel Sabaté Solà
2026-02-06
1
-4
/
+17
*
Fix the arithmetic on indexed addressing modes
Miquel Sabaté Solà
2026-02-05
1
-51
/
+136
*
Make the fallthrough error more explicit
Miquel Sabaté Solà
2026-02-03
1
-1
/
+4
*
Avoid invalid identifiers in proc/macro/scope
Miquel Sabaté Solà
2026-02-03
1
-7
/
+58
*
Ensure __fallthrough__ is not considered a valid identifier
Miquel Sabaté Solà
2026-02-03
1
-1
/
+4
*
Change .fallthrough to __fallthrough__
Miquel Sabaté Solà
2026-02-02
4
-38
/
+49
*
Fix typo in comment
Miquel Sabaté Solà
2026-02-02
1
-1
/
+1
*
Add the .fallthrough control statement
Miquel Sabaté Solà
2026-02-02
3
-1
/
+98
*
Warn on pointless (un)conditional branching
Miquel Sabaté Solà
2026-02-02
2
-0
/
+88
*
xixanta: add context from macro expansions
Miquel Sabaté Solà
2026-02-02
3
-4
/
+163
*
asan: move the conflict check into its own loop
Miquel Sabaté Solà
2025-12-15
1
-18
/
+30
*
Allow constants in asan:reserve statements
Miquel Sabaté Solà
2025-12-15
3
-29
/
+78
*
asan: addresses >= 0x2000 cannot be reserved space
Miquel Sabaté Solà
2025-12-15
1
-10
/
+15
*
Report on multi-byte values on arithmetic evaluation
Miquel Sabaté Solà
2025-12-15
1
-0
/
+32
*
Forbid to .include something which is not a file
Miquel Sabaté Solà
2025-12-15
1
-17
/
+17
*
Do not allow empty strings on .include
Miquel Sabaté Solà
2025-12-15
1
-0
/
+24
*
Allow asan:reserve to receive an usize
Miquel Sabaté Solà
2025-12-14
4
-26
/
+34
*
xixanta: Don't allow negative variables on asan
Miquel Sabaté Solà
2025-09-12
1
-4
/
+41
*
header: Add RAM and CPU/PPU Timing detection
Miquel Sabaté Solà
2025-09-12
1
-2
/
+141
*
header: Add one/four screen nametable support
Miquel Sabaté Solà
2025-09-12
1
-13
/
+74
*
asan: Add fixes on absolute/indirect addressing
Miquel Sabaté Solà
2025-09-03
1
-1
/
+6
*
Apply asan:ignore also when bundling
Miquel Sabaté Solà
2025-09-03
1
-1
/
+13
*
Add a check for variable names
Miquel Sabaté Solà
2025-09-03
1
-0
/
+67
*
Validate that memory access is done via variables
Miquel Sabaté Solà
2025-09-03
2
-9
/
+157
*
Add a warning for each unused variable
Miquel Sabaté Solà
2025-09-02
2
-31
/
+67
*
assembler: Preserve the original working directory
Miquel Sabaté Solà
2025-09-02
1
-0
/
+10
*
parser: Allow .include inside of .scope
Miquel Sabaté Solà
2025-09-02
1
-6
/
+21
*
parser: Avoid unwrap crash on weird quoted strings
Miquel Sabaté Solà
2025-09-02
1
-1
/
+1
*
assembler: Add support for asan:reserve,ignore
Miquel Sabaté Solà
2025-09-02
6
-96
/
+391
[next]