The Intel ISA handles both 32-bit and 64-bit code. ARM is split into separate arm32 and arm64 ISAs since the architectures have little in common in instruction encodings and register files.
14 lines
323 B
Python
14 lines
323 B
Python
"""
|
|
ARM 32-bit Architecture
|
|
----------------------
|
|
|
|
This target ISA generates code for ARMv7 and ARMv8 CPUs in 32-bit mode
|
|
(AArch32). We support both ARM and Thumb2 instruction encodings.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
from . import defs
|
|
|
|
# Re-export the primary target ISA definition.
|
|
ISA = defs.ISA.finish()
|