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.
14 lines
275 B
Python
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()
|