This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
OlderNewer