diff options
Diffstat (limited to 'arch/__init__.py')
| -rw-r--r-- | arch/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/__init__.py b/arch/__init__.py new file mode 100644 index 0000000..4943749 --- /dev/null +++ b/arch/__init__.py @@ -0,0 +1,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(), +} |