aboutsummaryrefslogtreecommitdiff
path: root/src/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-25 00:01:56 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-25 00:01:56 -0400
commitb1d2120d5d20c0122cc0a61f2ca09f0bc754d14d (patch)
treea9e978b3bf6aa371a8591317ff2fd2450e9c1e21 /src/README.md
parentf5b2281084d31700690916c6dd250e2da927e566 (diff)
More docs and moving parsing into a subfolder.
Diffstat (limited to 'src/README.md')
-rw-r--r--src/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/README.md b/src/README.md
index fa89ccdd..f91aec10 100644
--- a/src/README.md
+++ b/src/README.md
@@ -3,10 +3,10 @@
This directory contains the source files for the Tomo compiler:
- Abstract syntax trees: [ast.c](ast.c)/[ast.h](ast.h)
-- Compilation: [compile.c](compile.c)/[compile.h](compile.h)
+- Compilation: [compile/](compile)
- Compilation logic for enums: [enums.c](enums.c)/[enums.h](enums.h)
- Compilation environments: [environment.c](environment.c)/[environment.h](environment.h)
-- Parsing: [parse.c](parse.c)/[parse.h](parse.h)
+- Parsing: [parse/](parse)
- Compilation logic for structs: [structs.c](structs.c)/[structs.h](structs.h)
- The compiler executable: [tomo.c](tomo.c)/[tomo.h](tomo.h)
- Typechecking logic: [typecheck.c](typecheck.c)/[typecheck.h](typecheck.h)