-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz80.asd
54 lines (50 loc) · 1.52 KB
/
z80.asd
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
(defsystem #:z80/asm
:version "0.0.1"
:description "Zilog Z80 Assembler"
:license "BSD"
:depends-on (:alexandria)
:components ((:module "asm"
:serial t
:components
((:file "package")
(:file "assembler")))))
(defsystem #:z80
:version "0.0.1"
:description "Zilog Z80 Emulator"
:licence "BSD"
:serial t
:components ((:file "package")
(:file "peripherals")
(:file "z80")
(:file "macros")
(:file "addressing")
(:file "constants")
(:file "instructions")
(:file "tables")
(:file "bitmaths")
(:file "debug"))
:depends-on (:alexandria
:cl-fad
:flexi-streams
:z80/asm))
(defsystem #:z80/tests
:version "0.0.1"
:description "Zilog Z80 Emulator test package"
:licence "BSD"
:depends-on (:z80 :fiveam)
:components ((:module "t"
:serial t
:components
((:file "package")
(:file "roms")
(:file "registers")))))
(defsystem #:z80/ui
:version "0.0.1"
:description "Zilog Z80 Emulator debugger/ui"
:licence "BSD"
:depends-on (:z80 :qt+libs :qtools :qtcore :qtgui)
:components ((:module "ui"
:serial t
:components
((:file "package")
(:file "main")))))