forked from ARM-software/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 9
/
dune-project
53 lines (47 loc) · 1.56 KB
/
dune-project
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
(lang dune 3.11)
(using dune_site 0.1)
(name asli)
(version 1.0.0)
; Copyright Arm Limited (c) 2017-2019
; Copyright (C) 2022-2024 Intel Corporation
; SPDX-Licence-Identifier: BSD-3-Clause
(using menhir 2.0)
(package
(name asli)
(synopsis "Interpreter for Architecture Specification Language (ASL)")
(description "\| Interpreter for the language ASL that Arm and Intel use to write their ISA specifications.
"\|
"\| Currently supports reading/typechecking the specification,
"\| interactive execution of ASL statements and expressions,
"\| executing opcodes one at a time,
"\| loading ELF files and executing binaries.
"\|
"\| Experimentally includes support for generating C code
"\| that can be used to execute binaries faster and can be
"\| linked with other C/C++ libraries.
)
(sites (lib plugins)
(lib runtime)
(lib runtime_include)
(share stdlib))
(depends
("alcotest" :with-test)
"dune-site"
"linenoise"
("menhir" :build)
("ocaml" (>= "4.14"))
("ocolor" (>= "1.2.2"))
"odoc"
"yojson"
("z3" (>= "4.8.7"))
"zarith"
)
)
(license BSD-3-Clause)
(authors "Alastair Reid")
(maintainers "Alastair Reid <[email protected]>")
(source (github alastairreid/asl-interpreter))
(bug_reports "https://github.com/alastairreid/asl-interpreter/issues")
(homepage "https://github.com/alastairreid/asl-interpreter")
; (documentation ...)
(generate_opam_files true)