from register import Accumulator a = Accumulator(8) a.carry_flag = True a.set(8) print(a) a.shift_right(True) print(a)