From c169d4fd94660039be481e41d740983beaa066ae Mon Sep 17 00:00:00 2001 From: colin Date: Sat, 1 Jun 2024 10:22:45 -0700 Subject: Add: raw instrs, instrs, and ast skeletal module --- sarcasm.asd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sarcasm.asd (limited to 'sarcasm.asd') diff --git a/sarcasm.asd b/sarcasm.asd new file mode 100644 index 0000000..dc8b4e8 --- /dev/null +++ b/sarcasm.asd @@ -0,0 +1,12 @@ +;;;; sarcasm.asd + +(asdf:defsystem #:sarcasm + :description "WASM runtime in Common Lisp" + :author "Colin " + :license "GPL3" + :version "0.0.1" + :depends-on (#:alexandria #:yacc) + :pathname "src/" + :serial t + :components ((:file "util") + (:file "ast"))) -- cgit v1.2.3