| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [cup] Add `>>` and `<<` operators, `fork()` buildin and `SYS_execve`HEADmaster | Mustafa Quraish | 2022-02-08 | 1 | -0/+4 |
| | | |||||
| * | Remove default initialization to 0 for variable declarations | Mustafa Quraish | 2022-02-02 | 1 | -1/+6 |
| | | | | | | | This made sense when all variables were of the same size, but now with arrays we don't initialize them by default. Perhaps we should find a way to 0-initialize all the memory? | ||||
| * | Update build system to use Makefile | Mustafa Quraish | 2022-01-30 | 1 | -1/+3 |
| | | | | | | | | | | `make` to compile the compiler `make XXX.out` to assemble/link `XXX.nasm` into an executable `make test` to run all tests `make tests/XXX` to run `tests/XXX.sh` test file `./run.sh <cupcc args>` to build, compile, run and show exit code | ||||
| * | Ignore nasm, object and executable files | Mustafa Quraish | 2022-01-28 | 1 | -1/+5 |
| | | |||||
| * | Initial commit + start of lexer | Mustafa Quraish | 2022-01-24 | 1 | -0/+5 |