| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a configuration for MMC1 | Miquel Sabaté Solà | 2025-01-23 | 3 | -17/+17 |
| * | xa65: Create hex dumps for both binaries | Miquel Sabaté Solà | 2025-01-23 | 1 | -0/+49 |
| * | Add support for a single equal sign operator | Miquel Sabaté Solà | 2025-01-23 | 1 | -1/+4 |
| * | Drop lazy_static dependency | Miquel Sabaté Solà | 2025-01-22 | 5 | -498/+1703 |
| * | Implement echo control statements | Miquel Sabaté Solà | 2025-01-22 | 3 | -2/+48 |
| * | nasm: Implement the -D flag | Miquel Sabaté Solà | 2025-01-22 | 8 | -5/+134 |
| * | github: Add dependabot configuration | Miquel Sabaté Solà | 2025-01-22 | 1 | -0/+6 |
| * | Remove dependency on TOML | Miquel Sabaté Solà | 2025-01-22 | 13 | -550/+121 |
| * | Remove the dependency on clap | Miquel Sabaté Solà | 2025-01-22 | 7 | -301/+260 |
| * | Remove dependency to the rand crate | Miquel Sabaté Solà | 2025-01-22 | 6 | -195/+20 |
| * | tests: Add aoc2023.nes to end-to-end tests | Miquel Sabaté Solà | 2025-01-22 | 2 | -0/+12 |
| * | 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 |
| * | readrom: Print addresses for vectors | Miquel Sabaté Solà | 2025-01-14 | 1 | -1/+39 |
| * | 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 | 3 | -29/+8 |
| * | Add support for cfg files | Miquel Sabaté Solà | 2025-01-13 | 3 | -3/+559 |
| * | Add TODO file into .gitignore | Miquel Sabaté Solà | 2025-01-13 | 1 | -0/+1 |
| * | xa65: The config flag should be uppercase on short | Miquel Sabaté Solà | 2025-01-10 | 1 | -2/+2 |
| * | xa65: Provide the target flag | Miquel Sabaté Solà | 2025-01-10 | 1 | -0/+15 |
| * | readrom: Remove the derive feature from clap | Miquel Sabaté Solà | 2025-01-10 | 2 | -14/+18 |
| * | Remove anyhow from xa65 and readrom | Miquel Sabaté Solà | 2025-01-10 | 6 | -47/+71 |
| * | Make errors from nasm itself more cohesive | Miquel Sabaté Solà | 2025-01-10 | 1 | -40/+44 |
| * | Introduce xa65 | Miquel Sabaté Solà | 2025-01-10 | 4 | -0/+152 |
| * | Improve the message on bad file includes | Miquel Sabaté Solà | 2025-01-10 | 3 | -17/+9 |
| * | tests: Bundle end-to-end tests into a tarball | Miquel Sabaté Solà | 2025-01-10 | 12 | -1367/+19 |
| * | 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 |
| * | Add missing binary for end-to-end tests | Miquel Sabaté Solà | 2025-01-09 | 1 | -0/+0 |
| * | Rename SourceInfo::working_directory to directory | Miquel Sabaté Solà | 2025-01-09 | 4 | -10/+13 |
