summaryrefslogtreecommitdiff
path: root/miniany/README
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-09-23 19:05:07 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-09-23 19:05:07 +0200
commite3cb0f8facec3723a8e0f6f245c7688cf3da8804 (patch)
treecbe87dfa8baebcb7a6616ff4b13c43ceb462d5a7 /miniany/README
parent1d4b293aea9a1c595634e95675299805ee8fde0c (diff)
downloadcompilertests-e3cb0f8facec3723a8e0f6f245c7688cf3da8804.tar.gz
compilertests-e3cb0f8facec3723a8e0f6f245c7688cf3da8804.tar.bz2
cc
- proper Pratt parsing of expressions - fixed some register saving around divs and muls
Diffstat (limited to 'miniany/README')
-rw-r--r--miniany/README3
1 files changed, 3 insertions, 0 deletions
diff --git a/miniany/README b/miniany/README
index 53266d6..033f3d4 100644
--- a/miniany/README
+++ b/miniany/README
@@ -70,6 +70,9 @@ complex things into our own compiler.
* c.c in swieros: https://github.com/rswier/swieros.git
+* https://github.com/lotabout/write-a-C-interpreter/blob/master/tutorial/en/: tutorial
+ based on C4 how to build a C interpreter, explains nicely details in C4.
+
* documentation
* "Compiler Construction", Niklaus Wirth
* https://github.com/DoctorWkt/acwj: a nice series on building a C compiler,