|
|||||||||||
Technical Support On-Line Manuals Cx51 User's Guide ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Bit-Addressable ObjectsBit-addressable objects are objects that may be addressed as words or as bits. Only data objects that occupy the bit-addressable area of the 8051 internal memory fall into this category. The Cx51 Compiler places variables declared with the bdata memory type into the bit-addressable area. Furthermore, variables declared with the bdata memory type must be global (declared outside the scope of a function). You may declare these variables as shown below: int bdata ibase; /* Bit-addressable int */ char bdata bary [4]; /* Bit-addressable array */ The variables ibase and bary are bit-addressable. Therefore, the individual bits of these variables may be directly accessed and modified. Use the sbit keyword to declare new variables that access the bits of bdata variables. For example: sbit mybit0 = ibase ^ 0; /* bit 0 of ibase */ sbit mybit15 = ibase ^ 15; /* bit 15 of ibase */ sbit Ary07 = bary[0] ^ 7; /* bit 7 of bary[0] */ sbit Ary37 = bary[3] ^ 7; /* bit 7 of bary[3] */ The above example represents declarations, not assignments to the bits of the ibase and bary bdata variables. The expression following the carat symbol ('^') in the example specifies the position of the bit to access with this declaration. This expression must be a constant value. The range depends on the type of the base variable included in the declaration. The range is:
Note
You may provide external variable declarations for the sbit type to access these types in other modules. For example: extern bit mybit0; /* bit 0 of ibase */ extern bit mybit15; /* bit 15 of ibase */ extern bit Ary07; /* bit 7 of bary[0] */ extern bit Ary37; /* bit 7 of bary[3] */ Declarations involving the sbit type require that the base object be declared with the memory type bdata. The only exceptions are the variants for special function bits. Refer to Special Function Registers for more information. The following example shows how to change the ibase and bary bits using the above declarations. Ary37 = 0; /* clear bit 7 in bary[3] */ bary[3] = 'a'; /* Byte addressing */ ibase = -1; /* Word addressing */ mybit15 = 1; /* set bit 15 in ibase */ The bdata memory type is handled like the data memory type except that variables declared with bdata reside in the bit-addressable portion of the internal data memory. Note that the total size of this area of memory may not exceed 16 bytes. In addition to declaring sbit variables for scalar types, you may also declare sbit variables for structures and unions. For example: union lft { float mf; long ml; }; bdata struct bad { char m1; union lft u; } tcp; sbit tcpf31 = tcp.u.ml ^ 31; /* bit 31 of float */ sbit tcpm10 = tcp.m1 ^ 0; sbit tcpm17 = tcp.m1 ^ 7; Note
| ||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.