Add explicit memory type declaration to random generator

This commit is contained in:
Gabriel Tofvesson 2019-04-10 00:04:33 +02:00
parent def8aa8e90
commit 00379b472b

View File

@ -4,6 +4,6 @@ def getRandomHex():
return hex(random.randint(0, 0x10000) | (1 << 30))[-4:].upper()
if __name__ == "__main__":
print("@0xE0")
print("@p\n@0xE0")
for i in range(0, 32):
print(getRandomHex())