Files
wasmtime/lib/cretonne/meta/isa/arm64/__init__.py
Jakob Stoklund Olesen fb4db38dd6 Fill in boilerplate for Intel and ARM targets.
The intel, arm32, and arm32 targets were only defined in the meta
language previously. Add Rust implementations too.

This is mostly boilerplate, except for the unit tests in the
registers.rs files.
2016-11-23 10:42:07 -08:00

14 lines
275 B
Python

"""
ARM 64-bit Architecture
-----------------------
ARMv8 CPUs running the Aarch64 architecture.
"""
from __future__ import absolute_import
from . import defs
from . import settings, registers # noqa
# Re-export the primary target ISA definition.
ISA = defs.ISA.finish()