You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
My C book tells me that C compiles bitfields into a contiguous stream of bits
regardless of the member type declaration, so the port to PB would seem to be:
Code:
TYPE BIT_FIELD
BitField as DWORD
END TYPE
I presume that I port C code like:
Code:
ABitField.b1 = 0x09
over to PB as:
Code:
ABitField.BitField = ABitField.BitField AND &HFFFFFFF0 ' Clear the lowest 4 bits
ABitField.BitField = ABitField.BitField OR &H09 ' Set the lower 4 bits to the new value
Look right?
Thanks!
------------------
Mark Newman
[This message has been edited by Mark Newman (edited May 01, 2001).]
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Leave a comment: