You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
120 B

  1. from register import Accumulator
  2. a = Accumulator(8)
  3. a.carry_flag = True
  4. a.set(8)
  5. print(a)
  6. a.shift_right(True)
  7. print(a)