summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-01-28 17:52:23 -0500
committerbd <bdunahu@operationnull.com>2025-01-28 17:52:23 -0500
commit5cea39649d613864f3e7a688cb2a7ecbde8bd6cd (patch)
tree9cfdeb42231f771b344fdf7b541d5f135eaf276f /README.org
parent467357ef13ea5d935d2e3aa5baaeef6317cd9590 (diff)
Simplified declaring new IR nodes in (backend ast ir)
Diffstat (limited to 'README.org')
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index 0604e2a..49af2a5 100644
--- a/README.org
+++ b/README.org
@@ -2,11 +2,11 @@
The =manifest.scm= file provides the ideal build environment automatically to Guix users. flex, pkg-config, bison, make, and gcc are required to compile the frontend into a shared object file with =make all=, and guile is required to run the =ull= script.
-Running the ./ull script will print allowed arguments, which follows the interface prescribed by the book //Writing a C Compiler// by Nora Sandler.
+Running the ./ull script will print allowed arguments, which follows the interface prescribed by the book /Writing a C Compiler/ by Nora Sandler.
* General
-This compiler was made following the general guidelines provided in //Writing a C Compiler// by Nora Sandler.
+This compiler was made following the general guidelines provided in /Writing a C Compiler/ by Nora Sandler.
Since this a functional-programing/guile learning project, I utilized flex and bison to allow use of the Guile/C interface. Development takes a functionality-first approach---memory leaks and other undesired behavior likely.