Skip to content

Instantly share code, notes, and snippets.

@quend

quend/dump_prime.py

Created Sep 14, 2015
Embed
What would you like to do?
currentEa = 0x2214
i = 0
out = []
while i < 3476:
out.append(Word(currentEa))
currentEa += 2
i += 1
fd = open(r'prime_index_map.py', 'wb')
fd.write("prime_map = %s\n" % repr(out))
fd.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.