Assembler: ---------- CCAPM1 DATA 0C3h ANL CCAPM1, #00dh C equivalent ???? ----------------- sfr ccapm1 = 0xc3; ccapm1 = ccapm1 & ~(0x0d); or ccapm1 = ccapm1 & 0x0d; or ccapm1 = ccapm1 && 0x0d; Can some one shed a light on the correct interpretation?? Thanks.
View all questions in Keil forum