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.
|
|
from register import Accumulator
|
|
|
|
|
|
a = Accumulator(8)
|
|
|
a.carry_flag = True
|
|
|
a.set(8)
|
|
|
print(a)
|
|
|
a.shift_right(True)
|
|
|
print(a)
|