| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 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 | |
| * | Improve the format of error messages | Miquel Sabaté Solà | 2024-12-20 | 3 | -74/+83 | |
| * | nasm: Send errors to stderr instead | Miquel Sabaté Solà | 2024-12-20 | 1 | -3/+3 | |
| * | Do not spit out bytes if -Werror was passed | Miquel Sabaté Solà | 2024-12-20 | 1 | -9/+13 | |
| * | Add support for warnings | Miquel Sabaté Solà | 2024-12-20 | 2 | -16/+66 | |
| * | Expect macros to overwrite parameter values | Miquel Sabaté Solà | 2024-12-20 | 1 | -32/+8 | |
| * | Find variable values on parent scopes | Miquel Sabaté Solà | 2024-12-20 | 2 | -12/+99 | |
| * | scripts: Error out on warnings | Miquel Sabaté Solà | 2024-12-19 | 1 | -0/+2 | |
| * | assembler: Implement and add tests for operators | Miquel Sabaté Solà | 2024-12-19 | 2 | -6/+228 | |
| * | parser: Add support for operators | Miquel Sabaté Solà | 2024-12-19 | 2 | -12/+217 | |
| * | Export documentation on PString::to_isize | Miquel Sabaté Solà | 2024-12-19 | 1 | -3/+3 | |
| * | parser: Allow for parenthesized expressions | Miquel Sabaté Solà | 2024-12-19 | 1 | -0/+43 | |
| * | Implement the .incbin control statement | Miquel Sabaté Solà | 2024-12-19 | 5 | -10/+162 | |
| * | Merge code handling for procs and labels | Miquel Sabaté Solà | 2024-12-18 | 1 | -55/+75 | |
| * | Reset literal mode on pending nodes | Miquel Sabaté Solà | 2024-12-18 | 1 | -3/+5 | |
| * | Add support for jumping into .proc's | Miquel Sabaté Solà | 2024-12-18 | 2 | -7/+67 | |
| * | Fix label references on control statements | Miquel Sabaté Solà | 2024-12-18 | 1 | -1/+47 | |
| * | scripts: Add a script to perform all tests at once | Miquel Sabaté Solà | 2024-12-18 | 1 | -0/+16 | |
| * | Rename xixanta's fuzz targets | Miquel Sabaté Solà | 2024-12-18 | 4 | -6/+6 | |
| * | Prevent a crash on bad binary literals | Miquel Sabaté Solà | 2024-12-18 | 1 | -27/+33 | |
| * | Remove unneeded public references | Miquel Sabaté Solà | 2024-12-18 | 2 | -4/+4 | |
| * | Split crunch_and_resolve_pending | Miquel Sabaté Solà | 2024-12-18 | 1 | -5/+21 | |
| * | Remove unneeded Init and Parsing stage values | Miquel Sabaté Solà | 2024-12-18 | 1 | -7/+19 | |
| * | Remove unneeded Ok call | Miquel Sabaté Solà | 2024-12-18 | 1 | -1/+1 | |
| * | Prevent addresses which are out of bounds | Miquel Sabaté Solà | 2024-12-18 | 2 | -13/+41 | |
| * | nasm: Remove the option to disassemble a file | Miquel Sabaté Solà | 2024-12-18 | 1 | -37/+13 | |
| * | Improve documentation on nasm | Miquel Sabaté Solà | 2024-12-18 | 1 | -5/+22 | |
| * | github: Add issue/PR templates | Miquel Sabaté Solà | 2024-12-18 | 2 | -0/+29 | |
| * | Remove From<std::io::Error> from errors | Miquel Sabaté Solà | 2024-12-18 | 1 | -30/+0 | |
| * | header: Add fuzzy testing | Miquel Sabaté Solà | 2024-12-18 | 5 | -0/+119 | |
| * | Add the readrom binary | Miquel Sabaté Solà | 2024-12-18 | 8 | -2/+431 | |
| * | Update the README for open sourcing the project | Miquel Sabaté Solà | 2024-12-16 | 4 | -3/+25 | |
| * | Fix the mapping of addresses on labels | Miquel Sabaté Solà | 2024-12-16 | 5 | -328/+867 | |
| * | ci: Run a fuzzy test also for the assembler | Miquel Sabaté Solà | 2024-12-13 | 3 | -2/+40 | |
| * | parser: Fix crash on non-ASCII char literals | Miquel Sabaté Solà | 2024-12-13 | 1 | -3/+3 | |
| * | Be more informative on segment overflow errors | Miquel Sabaté Solà | 2024-12-12 | 1 | -2/+2 | |
| * | nasm: Add a parameter for linker configuration | Miquel Sabaté Solà | 2024-12-12 | 2 | -2/+64 | |
| * | Add support for character literals | Miquel Sabaté Solà | 2024-12-12 | 1 | -2/+76 | |
| * | Re-work the handling of segments in the assembler | Miquel Sabaté Solà | 2024-12-12 | 5 | -18/+286 | |
| * | Add support for anonymous labels | Miquel Sabaté Solà | 2024-12-12 | 4 | -30/+329 | |
| * | Don't rely on the identifier for control identity | Miquel Sabaté Solà | 2024-12-12 | 8 | -103/+182 | |
| * | Fix bug on multiple arguments for macros | Miquel Sabaté Solà | 2024-12-12 | 1 | -5/+69 | |
| * | Initial support for branching | Miquel Sabaté Solà | 2024-12-12 | 3 | -7/+114 | |
| * | Re-work the support on labels, variables and jumps | Miquel Sabaté Solà | 2024-12-12 | 6 | -90/+283 | |
| * | Allow for relative jumps at the parser level | Miquel Sabaté Solà | 2024-12-12 | 1 | -20/+153 | |
| * | Allow for .byte/.address statements | Miquel Sabaté Solà | 2024-12-12 | 2 | -30/+143 | |
| * | Implement the hibyte/lobyte functions | Miquel Sabaté Solà | 2024-12-12 | 1 | -2/+60 | |
| * | ci: Pick the proper stable version | Miquel Sabaté Solà | 2024-12-12 | 1 | -0/+5 | |
| * | Adapt the assembler to the changes on the parser | Miquel Sabaté Solà | 2024-12-12 | 15 | -2911/+2252 | |
