about summary refs log tree commit diff stats
path: root/arch/arch.py
blob: 36a4e3f4c532460eaca25fd3cd8bd856a5f43f74 (plain) (blame)
1
2
3
4
5
6
class Arch():
    def __init__(self, regnames: list[str]):
        self.regnames = regnames

    def __eq__(self, other):
        return self.regnames == other.regnames