Myriachan

Results 9 comments of Myriachan

I wrote that forum post =P As of right now, we have no idea how to dump that area of cartridges. We know that the data exists, but normal attempts...

Wouldn't `__attribute__((__target__("crc")))` work? Assuming that you're doing a runtime check somehow?

@noloader Oh, sorry, I don’t mean the multi-targeting feature of the `target` attribute. You can use this attribute on single functions rather than have multiple definitions of the same function....

> I don't see that in the docs at Microsoft's [x64 software conventions](https://docs.microsoft.com/en-us/cpp/build/x64-software-conventions). From that page: > Every function that allocates stack space, calls other functions, _saves nonvolatile registers_, or...

`Salsa20_OperateKeystream` also has an issue with the ABI. The `call`s within the function modify `rsp` outside the prolog. In the ABI, modifying `rsp` outside the prolog is only legal if...

I don't know, but supposedly, it's a lot more stable now...? But not perfect? I honestly don't know. On Fri, Jan 1, 2016 at 12:53 PM, Steven Smith [email protected] wrote:...

This isn't a bug. The `sub` instruction on x86-64 can only take a signed 32-bit immediate parameter. 2147483648 is too large for a signed 32-bit value. If you actually were...

Even having an GNU assembler for ARM64 that supports Windows ARM64 .pdata is hard enough...

I mean the first `static_assert` not second.