an attempt to write a compiler for a subset of C following this tutorial by Nora Sandler: https://norasandler.com/2017/11/29/Write-a-Compiler.html
Find a file
2020-08-17 22:15:23 +02:00
.idea Implemented lexer 2020-08-15 23:36:29 +02:00
Compiler added check before removing trailing { or ; 2020-08-17 01:33:38 +02:00
tests/week_1 Implemented lexer 2020-08-15 23:36:29 +02:00
.gitignore Implemented lexer 2020-08-15 23:36:29 +02:00
grammar Added Parser 2020-08-17 01:07:59 +02:00
README.md Update README.md 2020-08-17 22:15:23 +02:00
test.s Implemented lexer 2020-08-15 23:36:29 +02:00

lcc

This is an attempt to create a compiler for a subset of C. It is written in c# following this tutorial by Nora Sandler. It was made to learn more about compilers and is not made for actual use.