class documentation
class Architecture(_enum.Enum):
The CPU architecture for which an OS was designed.
- X64: the amd64 CPU architecture
- X86: the Intel x86 CPU architecture
| Method | __str__ |
Returns the nicely printable string representation of this instance. |
| Method | pointer |
Returns the natural reven2.types.Pointer type of this OS. |
| Constant | X64 |
Undocumented |
| Constant | X86 |
Undocumented |
| Class Variable | |
Undocumented |
def __str__(self):
Returns the nicely printable string representation of this instance.
| Returns | |
str | Undocumented |
def pointer_type(self):
Returns the natural reven2.types.Pointer type of this OS.
The inner type of the returned pointer is reven2.types.VoidType, if you need something else, use reven2.types.Pointer.cast_inner.
| Returns | |
_Optional[ | Undocumented |