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
2021-01-12 22:20:37 +01:00
Compiler changed divl to idvl to fix aritmethic exception 2021-01-12 22:20:37 +01:00
stage_1 corrected project to work with test_compiler.sh 2020-08-19 23:29:07 +02:00
stage_2 lexing and parsing unary operators 2020-08-20 17:11:43 +02:00
stage_3 Fixed the division error. Kinda 2020-12-23 11:51:58 +01:00
.gitignore removed .idea 2020-12-18 10:22:00 +01:00
div_neg Fixed the division error. Kinda 2020-12-23 11:51:58 +01:00
grammar comments for parser 2020-08-23 18:30:00 +02:00
README.md Update README.md 2020-08-17 22:15:23 +02:00
test_compiler.sh corrected project to work with test_compiler.sh 2020-08-19 23:29:07 +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.