Skip to content

Instantly share code, notes, and snippets.

View aerosoul94's full-sized avatar

aerosoul94

View GitHub Profile
import sys
def read_uint32(stream):
return int.from_bytes(stream.read(4), 'big')
def read_uint64(stream):
return int.from_bytes(stream.read(8), 'big')
class BDEmuImageDetail: