Closed JulianKemmerer closed 1 year ago
Fixed in https://github.com/JulianKemmerer/PipelineC/commit/98460c5b33dbd76326b22b79cccd31fd9f19563a
int8_t r = ~0;
is still not correct pipelinec since the '0' is a single bit literal - need to manually extend bit width.
These are what is now works fine instead:
int8_t r = ~(int8_t)0;
int8_t r = ~0x00;
int8_t r = ~0b00000000;
~0
resolved to ato_unsigned(1, 1)
'1' instead of 0xFF all onesSo does
~0b00000000
...