4 def architecture_support():
6 Config ISA related features
10 def arch_x86_32() -> bool:
11 return arch.val == "i386"
14 def arch_x86_64() -> bool:
15 return arch.val == "x86_64"
18 def arch_x86() -> bool:
19 return arch.val in ["x86_64", "i386"]
22 def arch() -> "i386" | "x86_64":
27 return _arch if _arch else "x86_64"
31 def arch_bits() -> 32 | 64:
33 Defines the base size of a general register of the
36 This the 'bits' part when we are talking about a CPU