Added union for signed long memory destructuring

This commit is contained in:
balhau 2020-07-16 11:48:39 +01:00
parent 72a6ce2282
commit 2cdd908a9e
No known key found for this signature in database
GPG key ID: BE6343D39997BF6C

View file

@ -18,6 +18,13 @@ typedef union {
Int signed_int;
} SignedInt;
typedef union {
struct {
Long value : 63;
Int signal : 1;
} long_with_msb;
} SignedLong;
//IEEE floating point alias
typedef float Float;
typedef double Double;