Tony Wasserka

Results 105 comments of Tony Wasserka

For reference, I've had similar symptoms, and my fix is probably very specific to my situation: * I'm on Linux * My laptop's blue USB 3.0 port somehow always uses...

If there was a reason not to support C-array members, I can't remember it anymore. As you probably noticed, `std::array` members are supported, since they are special-cased in [load.hpp](https://github.com/neobrain/blobify/blob/d4135b5c0cab103d196ac3f44297c5c2cce968ae/include/blobify/load.hpp#L92). A...

Yes, but chances are this command is not accessible from any userland application.

Some notes from today's #3dsdev discussion: - Updates can be obtained by replacing the game's upper title id with 0004000E. There may only be one update title per game. -...

That's interesting to know. For which title(s) does this apply, or do you know if all titles follow that procedure?

Turns out the Home Menu title shown in the target title selector is just a stub; Home Menu might be dumpable by booting into another system title.

I'm not a fan of introducing code like this just to fix compiler warnings that are false-positives. Would `builtin_unreachable` (hidden behind an `NIHSTRO_UNREACHABLE` macro defined at the top of the...

This is probably due to the issue addressed in https://github.com/citra-emu/citra/pull/1479. MAD instruction use a slightly different encoding than originally thought. nihstro's disassembler/assembler haven't been adapted to consider this properly, yet.

Hmm interesting. There is no specific documentation which suggested this, it's just something which sounded reasonable.

After some further investigation by the person who reported this behavior initially, it seems that EX2 only computes the base-2-expontential of the first component of the source operand, and writes...