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-12-18 00:07:23 +01:00
.idea Implemented lexer 2020-08-15 23:36:29 +02:00
Compiler Most likely fixed the precedence issue 2020-12-18 00:07:23 +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 parser 2020-08-23 18:14:37 +02:00
.gitignore Implemented lexer 2020-08-15 23:36:29 +02: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.s Lots of comments and cleanup 2020-12-17 21:36:39 +01: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.