From 3403c7222e37c688ab168769e6f4ca998a34ec3b Mon Sep 17 00:00:00 2001 From: Tan Kian-ting Date: Tue, 2 Sep 2025 22:52:40 +0800 Subject: [PATCH] add README for missingly deleted --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d921ba5 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# TComp +A practice of Essential of Complication in Julia + +## Dependencies + - julia + - [Match.jl](github.com/JuliaServices/Match.jl) + +## instruction +`./src/TComp.jl [.tc file]` + +the output assembly code is `./a.c` in AT&T assembly langauge. + +to make it executable, please use `gcc`: `gcc ./a.c -o output.out` + +the example `.tc` files is in `./test` + +## Known issues + - all connected variable are pathized (I don't understand the tricky method to elimitated the path number)