Skip to content

Instantly share code, notes, and snippets.

View JoeOsborn's full-sized avatar

Joe Osborn JoeOsborn

View GitHub Profile
@LudovicOmarini
LudovicOmarini / ARCode_to_libretro.py
Created December 28, 2023 14:52
Convert Action Replay code to Libretro code
# Encryption seeds for Pro Action Replay v3/4
Seeds = [
0x7AA9648F,
0x7FAE6994,
0xC0EFAAD5,
0x42712C57
]
def decrypt(opcode, operand):
for i in range(32, 0, -1):