paxcut
paxcut
> > > If you want to expose region variants, make it explicit that this is about locale/region, not about assigning a language to a single country > > >...
Why do you think bitfields are limited to 255 values. an unsigned byte goes from 0 to 255, but bitfields can have more than 8 bits.
Having a pragma to increase the number of bits in a bitfield is not what's needed here. You have to be able to support numbers that are that big because...
You can't define numbers that are bigger than 128 bit using imhex. Even if the bitfield allows to enter numbers bigger than 128 the actual number stored is still 128...
I don't understand the feature request asking for a pragma to increase the number of bits that an integer can have. Are you asking for imhex to support 1024 bit...
Currently this is the limit of the size that can be used in ImHex: ```cpp bitfield BF { bf : 128; }; ``` the limit is imposed by the biggest...
1. I am not wrong. If you use a number bigger than 128 the lower 128 bits are ignored and only the remaining bits are displayed in the value. Did...
I suspect there is a bug that is allowing numbers bigger than 128 to be used as bitfield field size. If you just want to ignore everything after the first...
Consider this input: If I write: ```cpp bitfield Test { signed test : 128; }; Test t@0; ``` I get a test variable that is 16 bytes long with value...
You may want to check this PR #2295