forked from UQ-PAC/aslp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asli.opam
49 lines (48 loc) · 1.18 KB
/
asli.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.2.0"
synopsis: "Interpreter for Arm's Architecture Specification Language (ASL)"
description: """
Interpreter for the language ASL that Arm uses 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 Arm binaries.
"""
maintainer: ["Alastair Reid <alastair.d.reid@gmail.com>"]
authors: ["Alastair Reid"]
license: "BSD-3-Clause"
homepage: "https://github.com/alastairreid/asl-interpreter"
bug-reports: "https://github.com/alastairreid/asl-interpreter/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.14"}
"menhir" {build}
"ott" {build & >= "0.31"}
"linenoise"
"pprint"
"zarith"
"z3" {>= "4.8.7"}
"pcre"
"alcotest" {with-test}
"dune-site"
"lwt"
"cohttp-lwt-unix"
"yojson"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/alastairreid/asl-interpreter.git"