about summary refs log tree commit diff stats
path: root/arch/__init__.py
blob: 494374967abe0203e37f5f0e3bf77d81b540cd23 (plain) (blame)
1
2
3
4
5
6
7
from .arch import Arch
from . import x86

"""A dictionary containing all supported architectures at their names."""
supported_architectures: dict[str, Arch] = {
    "X86": x86.ArchX86(),
}