Description of bit type a bit unclear
Posted: Wed Mar 26, 2025 12:08 pm
Hello,
I refer to https://ugbasic.iwashere.eu/manual/datatypes, especially the text:
x = y HAS BIT 4 : ' this is like y AND 32
x = y HAS NOT BIT 4 : ' this is like y AND 239
x = BIT 4 OF y : ' this is like y AND 32
it seems to me that the second line is somewhat wrong in the comment. I would think that this stands for "y and 223" (239 is 255-16, not -32)? Semantics would then be that this one bit is not set? Or should it mean that all the other bits are set? This is not so well described, I must say. It looks from this formula that all the other bits are meant to be set, no matter whether bit 4 is set or not. Is that correct?
I refer to https://ugbasic.iwashere.eu/manual/datatypes, especially the text:
x = y HAS BIT 4 : ' this is like y AND 32
x = y HAS NOT BIT 4 : ' this is like y AND 239
x = BIT 4 OF y : ' this is like y AND 32
it seems to me that the second line is somewhat wrong in the comment. I would think that this stands for "y and 223" (239 is 255-16, not -32)? Semantics would then be that this one bit is not set? Or should it mean that all the other bits are set? This is not so well described, I must say. It looks from this formula that all the other bits are meant to be set, no matter whether bit 4 is set or not. Is that correct?