4 def architecture_support():
6 Config ISA related features
10 def arch_x86_32() -> bool:
14 def arch_x86_64() -> bool:
15 when(arch is "x86_64")
18 def arch_x86() -> bool:
20 when(arch is "x86_64")
23 def arch() -> "i386" | "x86_64":
28 return _arch if _arch else "x86_64"
32 def arch_bits() -> 32 | 64:
34 Defines the base size of a general register of the
37 This the 'bits' part when we are talking about a CPU