-
It looks like .sav files created in big endian OSes are failed to get parsed correctly. If I understand it correctly, LayoutCode is supposed to be used to detect endianness which should later be appli…
-
In the struct_unpack function, an error is thrown if the endianness is BE. I tried swapping the endianness of the buffer as suggested in the corresponding comment (using the native buf.swap64()), but …
-
-
it would be great if you could specify in the method calls (loads and dumps) whether the size header was little endian or big endian.
-
Hi Jake,
I am using App version 2.4.1 (171) with Extra Strength v2 to help me reverse engineer the CAN bus code in my GM car.
I have an issue where any tes-lax Gauges linked to big-endian signal…
-
I'm parsing a bitfield-encoded date, bits 15-12=month, 11-7=day, 6-0=(year-2000). The twist is the bytes are in little-endian.
Looking at the code and tests for bitfields, it looks like the algorith…
-
**Describe the bug**
Choosing CoreAudio sound output on powerpc, I only get hiss, no music.
SDL output works normally.
**Steps to reproduce**
Build and try to use CoreAudio output on Darwin ppc.…
-
Hi, I am looking to mod japanese PS3 ver of MGRR to have english text (mostly done with story and cutscenes), just some things are left, one of them is Snake Soul DLC weapon does not have english loca…
-
I'd like to find a way to test this on a big-endian system. @funcwj or @soroushzargar do you have any ideas on this? A system emulator should be OK.
System compatibility is going to be a big de…
-
Right now, we fill up our inner field from the right, i.e.
```rust
struct A {
a: u2,
b: u16,
c: bool
}
let a = A::new(1, 2, true);
```
will be saved as: `0b1_00000000_00000010_01` on li…