Konstantin Komarov

Results 9 comments of Konstantin Komarov

Really like this feature! But instead of this special file format for key mapping, may be better use mapping from dump file itself, like `nfc-mfclassic` does. In UI it might...

Just came around. MOVDQA is here, but MOVNTDQA is missed from miasm.core.locationdb import LocationDB from miasm.arch.x86.arch import mn_x86 mn_x86.fromstring('MOVDQA XMM1, XMM2', loc_db, 64) mn_x86.fromstring('MOVNTDQA XMM0, XMMWORD PTR [EBX]', loc_db, 64)

@ericremoreynolds Thank you, I agree there is no problem with `symmetric` syntax. But others syntaxes have problems. ``` # another example >>> from jsondiff import diff >>> diff(['a', 'b', 'c'],...

Tested MK1 1.9.0. Ryujinx 1.1.1100. It seems to run quite stable (much stable than on yuzu). One glitch is a big problem, which makes game almost unplayable for me. Somewhy...

Reproduced the problem, and played with it a little bit. I think I know what is the problem. Receive message is sent too fast. It helps to add a little...

Just uncheck Options -> General... -> Message -> Enable checkbox.

such session helps `aiohttp.ClientSession(cookie_jar=aiohttp.DummyCookieJar())` also your request objects not closed exlicitly

@dima-kov closing responses helped for me, memory is about 100mb. maybe it's closing after calling text but not immediately.

``` async def fetch(session, url): async with session.get(url) as response: return await response.text() ```