4 frontend used | in place of ^.
21 #if defined(__SDCC_pic14) // pic14: LATCbits may actually exist in the device
22 # define LATCbits fake_LATCbits
25 volatile LATCbits_t LATCbits
;
29 void set_bits(unsigned char sn
)
31 LATCbits
.LATC0
= ((mask
>> sn
) & 1) ^ ~0x1;
34 volatile unsigned char bit
;
42 ASSERT(!LATCbits
.LATC0
);