-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharmish.asd
More file actions
25 lines (23 loc) · 1.12 KB
/
Copy patharmish.asd
File metadata and controls
25 lines (23 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defpackage :armish.system
(:use :cl :asdf))
(in-package :armish.system)
(defsystem armish
:description "an arm assembler"
:author "Ties Stuij <ties@stuij.se>"
:license "LLGPL"
:depends-on (:arnesi :umpa-lumpa :split-sequence :fiveam)
:components
((:module :src
:components
((:file "packages")
(:file "config" :depends-on ("packages"))
(:file "helpers" :depends-on ("config"))
(:file "assembler" :depends-on ("helpers"))
(:file "arm-instructions" :depends-on ("assembler"))
(:file "thumb-instructions" :depends-on ("assembler"))
(:file "directives" :depends-on ("assembler"))
(:file "arm-lisp-interworking" :depends-on ("arm-instructions"))
(:file "test" :depends-on ("arm-instructions"
"arm-lisp-interworking"
"thumb-instructions"
"directives"))))))