Crates.io | disarm64_defn |
lib.rs | disarm64_defn |
version | 0.1.9 |
source | src |
created_at | 2024-02-18 06:37:29.95405 |
updated_at | 2024-07-14 03:34:50.556937 |
description | This library provides structures and enums for describing AArch64 (ARMv8) instructions. |
homepage | https://github.com/kromych/disarm64_defn |
repository | https://github.com/kromych/disarm64_defn |
max_upload_size | |
id | 1143838 |
size | 35,299 |
disarm64
definitionsThis library provides structures and enums for describing AArch64 (ARMv8) instructions.
The approach might seem to be closer to what the opcodes
library (a part of GNU binutils
)
does, although the central motive is deserialization/parsing of a definition file -
what TableGen
(of LLVM
) employs.
By default, the crate is built with std
support. If you intend not to depend on the std
crate,
here is the syntax to use instead:
disarm64_defn = { version = "0.1", default_features = false }
For more information on the subject, please refer to: