root/software/misc/walking_zeros.py @ c7e0510c
| d286d445 | David Sorber | import sys
|
|
def main():
|
|||
# Print out ASCII hex walking zeros pattern
|
|||
base = 0xffffffffffffffff
|
|||
for idx in range(64):
|
|||
foo = base
|
|||
foo &= ~(1 <<idx);
|
|||
print('{:016X}'.format(foo))
|
|||
if __name__ == '__main__':
|
|||
sys.exit(main())
|