diff options
Diffstat (limited to 'arch/arch.py')
| -rw-r--r-- | arch/arch.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arch.py b/arch/arch.py new file mode 100644 index 0000000..36a4e3f --- /dev/null +++ b/arch/arch.py @@ -0,0 +1,6 @@ +class Arch(): + def __init__(self, regnames: list[str]): + self.regnames = regnames + + def __eq__(self, other): + return self.regnames == other.regnames |