The question pretty much covers it.
Is there some way to control what's an 8 bit quantity, what's a 16 or 32 bit quantity, etc ?
I have flags that only need to be true or false.
I have integers that could be represented in one byte, some in 2 bytes.
I have floats that don't need to be doubles.
Is there a way to control memory consumed by variables ??
I've done some hunting and I don't see it except for assigning constants which may be part of a solution but not the whole solution.
Any help would be much appreciated.